:root {
    --toastify-color-light: #fff;
    --toastify-color-dark: #121212;
    --toastify-color-info: #3498db;
    --toastify-color-success: #07bc0c;
    --toastify-color-warning: #f1c40f;
    --toastify-color-error: #e74c3c;
    --toastify-color-transparent: #ffffffb3;
    --toastify-icon-color-info: var(--toastify-color-info);
    --toastify-icon-color-success: var(--toastify-color-success);
    --toastify-icon-color-warning: var(--toastify-color-warning);
    --toastify-icon-color-error: var(--toastify-color-error);
    --toastify-toast-width: 320px;
    --toastify-toast-background: #fff;
    --toastify-toast-min-height: 64px;
    --toastify-toast-max-height: 800px;
    --toastify-font-family: sans-serif;
    --toastify-z-index: 9999;
    --toastify-text-color-light: #757575;
    --toastify-text-color-dark: #fff;
    --toastify-text-color-info: #fff;
    --toastify-text-color-success: #fff;
    --toastify-text-color-warning: #fff;
    --toastify-text-color-error: #fff;
    --toastify-spinner-color: #616161;
    --toastify-spinner-color-empty-area: #e0e0e0;
    --toastify-color-progress-light: linear-gradient(90deg, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);
    --toastify-color-progress-dark: #bb86fc;
    --toastify-color-progress-info: var(--toastify-color-info);
    --toastify-color-progress-success: var(--toastify-color-success);
    --toastify-color-progress-warning: var(--toastify-color-warning);
    --toastify-color-progress-error: var(--toastify-color-error)
}

.Toastify__toast-container {
    box-sizing: border-box;
    color: #fff;
    padding: 4px;
    position: fixed;
    -webkit-transform: translate3d(0, 0, var(--toastify-z-index) px);
    width: var(--toastify-toast-width);
    z-index: var(--toastify-z-index)
}

.Toastify__toast-container--top-left {
    left: 1em;
    top: 1em
}

.Toastify__toast-container--top-center {
    left: 50%;
    top: 1em;
    transform: translateX(-50%)
}

.Toastify__toast-container--top-right {
    right: 1em;
    top: 1em
}

.Toastify__toast-container--bottom-left {
    bottom: 1em;
    left: 1em
}

.Toastify__toast-container--bottom-center {
    bottom: 1em;
    left: 50%;
    transform: translateX(-50%)
}

.Toastify__toast-container--bottom-right {
    bottom: 1em;
    right: 1em
}

@media only screen and (max-width:480px) {
    .Toastify__toast-container {
        left: 0;
        margin: 0;
        padding: 0;
        width: 100vw
    }

    .Toastify__toast-container--top-center,
    .Toastify__toast-container--top-left,
    .Toastify__toast-container--top-right {
        top: 0;
        transform: translateX(0)
    }

    .Toastify__toast-container--bottom-center,
    .Toastify__toast-container--bottom-left,
    .Toastify__toast-container--bottom-right {
        bottom: 0;
        transform: translateX(0)
    }

    .Toastify__toast-container--rtl {
        left: auto;
        right: 0
    }
}

.Toastify__toast {
    border-radius: 4px;
    box-shadow: 0 1px 10px 0 #0000001a, 0 2px 15px 0 #0000000d;
    box-sizing: border-box;
    cursor: pointer;
    direction: ltr;
    display: flex;
    font-family: var(--toastify-font-family);
    justify-content: space-between;
    margin-bottom: 1rem;
    max-height: var(--toastify-toast-max-height);
    min-height: var(--toastify-toast-min-height);
    overflow: hidden;
    padding: 8px;
    position: relative
}

.Toastify__toast--rtl {
    direction: rtl
}

.Toastify__toast-body {
    align-items: center;
    display: flex;
    flex: 1 1 auto;
    margin: auto 0;
    padding: 6px
}

.Toastify__toast-body>div:last-child {
    flex: 1 1
}

.Toastify__toast-icon {
    display: flex;
    flex-shrink: 0;
    margin-inline-end: 10px;
    width: 20px
}

.Toastify--animate {
    animation-duration: .7s;
    animation-fill-mode: both
}

.Toastify--animate-icon {
    animation-duration: .3s;
    animation-fill-mode: both
}

@media only screen and (max-width:480px) {
    .Toastify__toast {
        border-radius: 0;
        margin-bottom: 0
    }
}

.Toastify__toast-theme--dark {
    background: var(--toastify-color-dark);
    color: var(--toastify-text-color-dark)
}

.Toastify__toast-theme--colored.Toastify__toast--default,
.Toastify__toast-theme--light {
    background: var(--toastify-color-light);
    color: var(--toastify-text-color-light)
}

.Toastify__toast-theme--colored.Toastify__toast--info {
    background: var(--toastify-color-info);
    color: var(--toastify-text-color-info)
}

.Toastify__toast-theme--colored.Toastify__toast--success {
    background: var(--toastify-color-success);
    color: var(--toastify-text-color-success)
}

.Toastify__toast-theme--colored.Toastify__toast--warning {
    background: var(--toastify-color-warning);
    color: var(--toastify-text-color-warning)
}

.Toastify__toast-theme--colored.Toastify__toast--error {
    background: var(--toastify-color-error);
    color: var(--toastify-text-color-error)
}

.Toastify__progress-bar-theme--light {
    background: var(--toastify-color-progress-light)
}

.Toastify__progress-bar-theme--dark {
    background: var(--toastify-color-progress-dark)
}

.Toastify__progress-bar--info {
    background: var(--toastify-color-progress-info)
}

.Toastify__progress-bar--success {
    background: var(--toastify-color-progress-success)
}

.Toastify__progress-bar--warning {
    background: var(--toastify-color-progress-warning)
}

.Toastify__progress-bar--error {
    background: var(--toastify-color-progress-error)
}

.Toastify__progress-bar-theme--colored.Toastify__progress-bar--error,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--success,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning {
    background: var(--toastify-color-transparent)
}

.Toastify__close-button {
    align-self: flex-start;
    background: #0000;
    border: none;
    color: #fff;
    cursor: pointer;
    opacity: .7;
    outline: none;
    padding: 0;
    transition: .3s ease
}

.Toastify__close-button--light {
    color: #000;
    opacity: .3
}

.Toastify__close-button>svg {
    fill: currentColor;
    height: 16px;
    width: 14px
}

.Toastify__close-button:focus,
.Toastify__close-button:hover {
    opacity: 1
}

@keyframes Toastify__trackProgress {
    0% {
        transform: scaleX(1)
    }

    to {
        transform: scaleX(0)
    }
}

.Toastify__progress-bar {
    bottom: 0;
    height: 5px;
    left: 0;
    opacity: .7;
    position: absolute;
    transform-origin: left;
    width: 100%;
    z-index: var(--toastify-z-index)
}

.Toastify__progress-bar--animated {
    animation: Toastify__trackProgress linear 1 forwards
}

.Toastify__progress-bar--controlled {
    transition: transform .2s
}

.Toastify__progress-bar--rtl {
    left: auto;
    right: 0;
    transform-origin: right
}

.Toastify__spinner {
    animation: Toastify__spin .65s linear infinite;
    border: 2px solid;
    border-color: var(--toastify-spinner-color-empty-area);
    border-radius: 100%;
    border-right-color: var(--toastify-spinner-color);
    box-sizing: border-box;
    height: 20px;
    width: 20px
}

@keyframes Toastify__bounceInRight {

    0%,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        transform: translate3d(3000px, 0, 0)
    }

    60% {
        opacity: 1;
        transform: translate3d(-25px, 0, 0)
    }

    75% {
        transform: translate3d(10px, 0, 0)
    }

    90% {
        transform: translate3d(-5px, 0, 0)
    }

    to {
        transform: none
    }
}

@keyframes Toastify__bounceOutRight {
    20% {
        opacity: 1;
        transform: translate3d(-20px, 0, 0)
    }

    to {
        opacity: 0;
        transform: translate3d(2000px, 0, 0)
    }
}

@keyframes Toastify__bounceInLeft {

    0%,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        transform: translate3d(-3000px, 0, 0)
    }

    60% {
        opacity: 1;
        transform: translate3d(25px, 0, 0)
    }

    75% {
        transform: translate3d(-10px, 0, 0)
    }

    90% {
        transform: translate3d(5px, 0, 0)
    }

    to {
        transform: none
    }
}

@keyframes Toastify__bounceOutLeft {
    20% {
        opacity: 1;
        transform: translate3d(20px, 0, 0)
    }

    to {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0)
    }
}

@keyframes Toastify__bounceInUp {

    0%,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        transform: translate3d(0, 3000px, 0)
    }

    60% {
        opacity: 1;
        transform: translate3d(0, -20px, 0)
    }

    75% {
        transform: translate3d(0, 10px, 0)
    }

    90% {
        transform: translate3d(0, -5px, 0)
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes Toastify__bounceOutUp {
    20% {
        transform: translate3d(0, -10px, 0)
    }

    40%,
    45% {
        opacity: 1;
        transform: translate3d(0, 20px, 0)
    }

    to {
        opacity: 0;
        transform: translate3d(0, -2000px, 0)
    }
}

@keyframes Toastify__bounceInDown {

    0%,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        transform: translate3d(0, -3000px, 0)
    }

    60% {
        opacity: 1;
        transform: translate3d(0, 25px, 0)
    }

    75% {
        transform: translate3d(0, -10px, 0)
    }

    90% {
        transform: translate3d(0, 5px, 0)
    }

    to {
        transform: none
    }
}

@keyframes Toastify__bounceOutDown {
    20% {
        transform: translate3d(0, 10px, 0)
    }

    40%,
    45% {
        opacity: 1;
        transform: translate3d(0, -20px, 0)
    }

    to {
        opacity: 0;
        transform: translate3d(0, 2000px, 0)
    }
}

.Toastify__bounce-enter--bottom-left,
.Toastify__bounce-enter--top-left {
    animation-name: Toastify__bounceInLeft
}

.Toastify__bounce-enter--bottom-right,
.Toastify__bounce-enter--top-right {
    animation-name: Toastify__bounceInRight
}

.Toastify__bounce-enter--top-center {
    animation-name: Toastify__bounceInDown
}

.Toastify__bounce-enter--bottom-center {
    animation-name: Toastify__bounceInUp
}

.Toastify__bounce-exit--bottom-left,
.Toastify__bounce-exit--top-left {
    animation-name: Toastify__bounceOutLeft
}

.Toastify__bounce-exit--bottom-right,
.Toastify__bounce-exit--top-right {
    animation-name: Toastify__bounceOutRight
}

.Toastify__bounce-exit--top-center {
    animation-name: Toastify__bounceOutUp
}

.Toastify__bounce-exit--bottom-center {
    animation-name: Toastify__bounceOutDown
}

@keyframes Toastify__zoomIn {
    0% {
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }

    50% {
        opacity: 1
    }
}

@keyframes Toastify__zoomOut {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }

    to {
        opacity: 0
    }
}

.Toastify__zoom-enter {
    animation-name: Toastify__zoomIn
}

.Toastify__zoom-exit {
    animation-name: Toastify__zoomOut
}

@keyframes Toastify__flipIn {
    0% {
        animation-timing-function: ease-in;
        opacity: 0;
        transform: perspective(400px) rotateX(90deg)
    }

    40% {
        animation-timing-function: ease-in;
        transform: perspective(400px) rotateX(-20deg)
    }

    60% {
        opacity: 1;
        transform: perspective(400px) rotateX(10deg)
    }

    80% {
        transform: perspective(400px) rotateX(-5deg)
    }

    to {
        transform: perspective(400px)
    }
}

@keyframes Toastify__flipOut {
    0% {
        transform: perspective(400px)
    }

    30% {
        opacity: 1;
        transform: perspective(400px) rotateX(-20deg)
    }

    to {
        opacity: 0;
        transform: perspective(400px) rotateX(90deg)
    }
}

.Toastify__flip-enter {
    animation-name: Toastify__flipIn
}

.Toastify__flip-exit {
    animation-name: Toastify__flipOut
}

@keyframes Toastify__slideInRight {
    0% {
        transform: translate3d(110%, 0, 0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes Toastify__slideInLeft {
    0% {
        transform: translate3d(-110%, 0, 0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes Toastify__slideInUp {
    0% {
        transform: translate3d(0, 110%, 0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes Toastify__slideInDown {
    0% {
        transform: translate3d(0, -110%, 0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes Toastify__slideOutRight {
    0% {
        transform: translateZ(0)
    }

    to {
        transform: translate3d(110%, 0, 0);
        visibility: hidden
    }
}

@keyframes Toastify__slideOutLeft {
    0% {
        transform: translateZ(0)
    }

    to {
        transform: translate3d(-110%, 0, 0);
        visibility: hidden
    }
}

@keyframes Toastify__slideOutDown {
    0% {
        transform: translateZ(0)
    }

    to {
        transform: translate3d(0, 500px, 0);
        visibility: hidden
    }
}

@keyframes Toastify__slideOutUp {
    0% {
        transform: translateZ(0)
    }

    to {
        transform: translate3d(0, -500px, 0);
        visibility: hidden
    }
}

.Toastify__slide-enter--bottom-left,
.Toastify__slide-enter--top-left {
    animation-name: Toastify__slideInLeft
}

.Toastify__slide-enter--bottom-right,
.Toastify__slide-enter--top-right {
    animation-name: Toastify__slideInRight
}

.Toastify__slide-enter--top-center {
    animation-name: Toastify__slideInDown
}

.Toastify__slide-enter--bottom-center {
    animation-name: Toastify__slideInUp
}

.Toastify__slide-exit--bottom-left,
.Toastify__slide-exit--top-left {
    animation-name: Toastify__slideOutLeft
}

.Toastify__slide-exit--bottom-right,
.Toastify__slide-exit--top-right {
    animation-name: Toastify__slideOutRight
}

.Toastify__slide-exit--top-center {
    animation-name: Toastify__slideOutUp
}

.Toastify__slide-exit--bottom-center {
    animation-name: Toastify__slideOutDown
}

@keyframes Toastify__spin {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn)
    }
}

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,
fieldset,
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 {
    border: 0;
    margin: 0;
    padding: 0;
    vertical-align: initial
}

a img,
fieldset,
img {
    border: none
}

input[type=email],
input[type=tel],
input[type=text],
textarea {
    -webkit-appearance: none
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

button,
input[type=submit] {
    background: none;
    cursor: pointer
}

button::-moz-focus-inner,
input[type=submit]::-moz-focus-inner {
    border: 0;
    padding: 0
}

button,
input {
    border: 0;
    margin: 0;
    padding: 0
}

a,
a:focus,
button,
div,
h1,
h2,
h3,
h4,
h5,
h6,
input,
select,
span,
textarea {
    outline: none
}

ol,
ul {
    list-style-type: none
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%
}

html {
    box-sizing: border-box
}

*,
:after,
:before {
    box-sizing: inherit
}

@media(prefers-reduced-motion:reduce) {
    * {
        transition: none !important
    }
}

.wallet-adapter-dropdown {
    display: block !important
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #fff;
    color: #9e5400;
    font-family: poppins, sans-serif;
    font-size: 14px;
    line-height: 1.7;
    min-width: 360px
}

a {
    text-decoration: none
}

img,
svg {
    vertical-align: middle
}

@media only screen and (max-width:1179px) {
    .desktop-hide {
        display: none !important
    }
}

.desktop-show {
    display: none !important
}

@media only screen and (max-width:1179px) {
    .desktop-show {
        display: block !important
    }

    .desktop-text-right {
        text-align: right
    }
}

@media only screen and (max-width:1023px) {
    .tablet-hide {
        display: none !important
    }
}

.tablet-show {
    display: none !important
}

@media only screen and (max-width:1023px) {
    .tablet-show {
        display: block !important
    }
}

@media only screen and (max-width:767px) {
    .mobile-hide {
        display: none !important
    }
}

.mobile-show {
    display: none !important
}

@media only screen and (max-width:1440px) {
    .mobile-show {
        display: block !important
    }
}

.Toastify__toast--error {
    width: -moz-fit-content;
    width: fit-content
}

.container {
    max-width: 1440px;
    padding: 0;
    width: 100%
}

@media only screen and (max-width:1440px) {
    .container {
        max-width: 1120px
    }
}

@media only screen and (max-width:1179px) {
    .container {
        max-width: 100%
    }
}

footer,
nav,
section {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.pc {
    display: block !important
}

@media only screen and (max-width:1179px) {
    .pc {
        display: none !important
    }
}

.mobile {
    display: none !important
}

@media only screen and (max-width:1179px) {
    .mobile {
        display: block !important
    }
}

.container,
.container-fluid {
    position: relative
}

.container-fluid {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    width: 100%
}

.row {
    align-items: flex-start;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    margin-left: -15px;
    margin-right: -15px
}

.row.reverse {
    flex-direction: row-reverse
}

.row.start {
    justify-content: flex-start
}

.row.center {
    justify-content: center
}

.row.end {
    justify-content: flex-end
}

.row.between {
    justify-content: space-between
}

.row.around {
    justify-content: space-around
}

.row.top {
    align-items: top
}

.row.middle {
    align-items: center
}

.row.bottom {
    align-items: flex-end
}

.row.stretch {
    align-items: stretch
}

[class*=col-] {
    padding-left: 15px;
    padding-right: 15px;
    position: relative
}

[class*=col-].first {
    order: -1
}

[class*=col-].last {
    order: 1
}

.col-lg-1 {
    width: 4.16667%
}

.col-lg-2 {
    width: 8.33333%
}

.col-lg-3 {
    width: 12.5%
}

.col-lg-4 {
    width: 16.66667%
}

.col-lg-5 {
    width: 20.83333%
}

.col-lg-6 {
    width: 25%
}

.col-lg-7 {
    width: 29.16667%
}

.col-lg-8 {
    width: 33.33333%
}

.col-lg-9 {
    width: 37.5%
}

.col-lg-10 {
    width: 41.66667%
}

.col-lg-11 {
    width: 45.83333%
}

.col-lg-12 {
    width: 50%
}

.col-lg-13 {
    width: 54.16667%
}

.col-lg-14 {
    width: 58.33333%
}

.col-lg-15 {
    width: 62.5%
}

.col-lg-16 {
    width: 66.66667%
}

.col-lg-17 {
    width: 70.83333%
}

.col-lg-18 {
    width: 75%
}

.col-lg-19 {
    width: 79.16667%
}

.col-lg-20 {
    width: 83.33333%
}

.col-lg-21 {
    width: 87.5%
}

.col-lg-22 {
    width: 91.66667%
}

.col-lg-23 {
    width: 95.83333%
}

.col-lg-24 {
    width: 100%
}

.col-lg-offset-1 {
    margin-left: 4.16667%
}

.col-lg-offset-2 {
    margin-left: 8.33333%
}

.col-lg-offset-3 {
    margin-left: 12.5%
}

.col-lg-offset-4 {
    margin-left: 16.66667%
}

.col-lg-offset-5 {
    margin-left: 20.83333%
}

.col-lg-offset-6 {
    margin-left: 25%
}

.col-lg-offset-7 {
    margin-left: 29.16667%
}

.col-lg-offset-8 {
    margin-left: 33.33333%
}

.col-lg-offset-9 {
    margin-left: 37.5%
}

.col-lg-offset-10 {
    margin-left: 41.66667%
}

.col-lg-offset-11 {
    margin-left: 45.83333%
}

.col-lg-offset-12 {
    margin-left: 50%
}

.col-lg-offset-13 {
    margin-left: 54.16667%
}

.col-lg-offset-14 {
    margin-left: 58.33333%
}

.col-lg-offset-15 {
    margin-left: 62.5%
}

.col-lg-offset-16 {
    margin-left: 66.66667%
}

.col-lg-offset-17 {
    margin-left: 70.83333%
}

.col-lg-offset-18 {
    margin-left: 75%
}

.col-lg-offset-19 {
    margin-left: 79.16667%
}

.col-lg-offset-20 {
    margin-left: 83.33333%
}

.col-lg-offset-21 {
    margin-left: 87.5%
}

.col-lg-offset-22 {
    margin-left: 91.66667%
}

.col-lg-offset-23 {
    margin-left: 95.83333%
}

.col-lg-offset-24 {
    margin-left: 100%
}

.col-lg-offset-0 {
    margin-left: 0
}

.col-auto {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    position: relative
}

.align-left {
    text-align: left
}

.align-right {
    text-align: right
}

.align-center {
    text-align: center
}

.align-justify {
    text-align: justify
}

.text-uppercase {
    text-transform: uppercase
}

.text-lowercase {
    text-transform: lowercase
}

.text-capitalize {
    text-transform: capitalize
}

.margin-bottom-5 {
    margin-bottom: 5px
}

.margin-bottom-10 {
    margin-bottom: 10px
}

.margin-bottom-15 {
    margin-bottom: 15px
}

.margin-bottom-20 {
    margin-bottom: 20px !important
}

.margin-bottom-40 {
    margin-bottom: 40px
}

.margin-left-5 {
    margin-left: 5px
}

.margin-left-10 {
    margin-left: 10px
}

.margin-left-15 {
    margin-left: 15px
}

.margin-left-20 {
    margin-left: 20px
}

.margin-right-5 {
    margin-right: 5px
}

.margin-right-10 {
    margin-right: 10px
}

.margin-right-15 {
    margin-right: 15px
}

.margin-right-20 {
    margin-right: 20px
}

.margin-top-5 {
    margin-top: 5px
}

.margin-top-10 {
    margin-top: 10px
}

.margin-top-15 {
    margin-top: 15px
}

.margin-top-20 {
    margin-top: 20px
}

.responsive-img {
    display: block;
    height: auto;
    max-width: 100%;
    min-width: 100%
}

.md-show,
.mobile-show {
    display: none
}

.flex-start {
    justify-content: flex-start
}

.flex-space,
.flex-start {
    align-items: center;
    display: flex;
    flex-flow: row wrap
}

.flex-space {
    justify-content: space-between
}

.flex-around {
    justify-content: space-around
}

.flex-around,
.flex-end {
    align-items: center;
    display: flex;
    flex-flow: row wrap
}

.flex-end {
    justify-content: flex-end
}

.nowrap {
    white-space: nowrap
}

*,
:after,
:before {
    box-sizing: border-box
}

html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

body {
    margin: 0
}

article,
aside,
figcaption,
figure,
main {
    display: block
}

ul {
    list-style: none;
    margin: 0;
    padding: 0
}

figure {
    margin: 1em 40px
}

hr {
    border-top: none;
    box-sizing: initial;
    height: 0;
    overflow: visible
}

pre {
    font-family: monospace, monospace;
    font-size: 1em
}

a {
    -webkit-text-decoration-skip: objects;
    background-color: #0000
}

a:active,
a:hover {
    outline-width: 0
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted
}

strong {
    font-weight: inherit
}

b,
strong {
    font-weight: bolder
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em
}

dfn {
    font-style: italic
}

mark {
    background-color: #ff0;
    color: #000
}

small {
    font-size: 80%
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: initial
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

audio,
video {
    display: inline-block
}

audio:not([controls]) {
    display: none;
    height: 0
}

img {
    border-style: none;
    display: inline-block;
    height: auto;
    max-width: 100%
}

svg:not(:root) {
    overflow: hidden
}

button,
input,
optgroup,
select,
textarea {
    font-size: 100%;
    line-height: 1.15;
    margin: 0
}

button:focus,
input:focus,
optgroup:focus,
select:focus,
textarea:focus {
    outline: none
}

button,
input {
    -webkit-appearance: none;
    overflow: visible
}

button,
select {
    text-transform: none
}

[type=reset],
[type=submit],
button,
html [type=button] {
    -webkit-appearance: button
}

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

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

fieldset {
    border: 1px solid silver;
    margin: 0 2px;
    padding: .35em .625em .75em
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal
}

progress {
    display: inline-block;
    vertical-align: initial
}

textarea {
    overflow: auto
}

[type=checkbox],
[type=radio] {
    box-sizing: border-box;
    padding: 0
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

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

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

details,
menu {
    display: block
}

summary {
    display: list-item
}

canvas {
    display: inline-block
}

[hidden],
template {
    display: none
}

@font-face {
    font-family: inter;
    font-style: normal;
    font-weight: 400;
    src: url(/static/media/Inter-Regular.9ca9ba81e9dcaa12b3a1.ttf)
}

@font-face {
    font-family: inter-light;
    font-style: normal;
    font-weight: 400;
    src: url(/static/media/Inter-Light.02850f28027788580733.ttf)
}

@font-face {
    font-family: inter-bold;
    font-style: normal;
    font-weight: 400;
    src: url(/static/media/Inter-Bold.0eaf807b1cf0eceabe0f.ttf)
}

@font-face {
    font-family: inter-semi-bold;
    font-style: normal;
    font-weight: 400;
    src: url(/static/media/Inter-SemiBold.6058d3da655fb35169c2.ttf)
}

@font-face {
    font-family: poppins;
    font-style: normal;
    font-weight: 400;
    src: url(/static/media/Poppins-Regular.35d26b781dc5fda684cc.ttf)
}

@font-face {
    font-family: poppins-extrabold;
    font-style: normal;
    font-weight: 400;
    src: url(/static/media/Poppins-ExtraBold.01849ee091e1762a5dd5.ttf)
}

@font-face {
    font-family: poppins-bold;
    font-style: normal;
    font-weight: 400;
    src: url(/static/media/Poppins-Bold.cdb29a5d7ccf57ff05a3.ttf)
}

@font-face {
    font-family: poppins-semi-bold;
    font-style: normal;
    font-weight: 400;
    src: url(/static/media/Poppins-SemiBold.ac8d04b620e54be9b0f0.ttf)
}

@font-face {
    font-family: poppins-medium;
    font-style: normal;
    font-weight: 400;
    src: url(/static/media/Poppins-Medium.673ed42382ab264e0bf5.ttf)
}

@font-face {
    font-family: poppins-regular;
    font-style: normal;
    font-weight: 400;
    src: url(/static/media/Poppins-Regular.35d26b781dc5fda684cc.ttf)
}

.h1,
.h2,
.h3,
.h4,
.hero {
    font-family: poppins, sans-serif;
    font-weight: 700
}

.hero {
    font-size: 96px
}

.h1,
.hero {
    letter-spacing: -.02em;
    line-height: 1
}

.h1 {
    font-size: 64px
}

.h2 {
    font-size: 48px;
    letter-spacing: -.02em;
    line-height: 1.15
}

.h3 {
    font-size: 40px;
    line-height: 1.2
}

.h3,
.h4 {
    letter-spacing: -.01em
}

.h4 {
    font-size: 32px;
    line-height: 1.25
}

.title {
    color: #9e5400;
    font-family: poppins-bold, poppins, sans-serif;
    font-size: 64px;
    line-height: 68px
}

@media only screen and (max-width:1179px) {
    .title {
        font-size: 40px;
        line-height: 107%
    }
}

[class^=status] {
    border-radius: 4px;
    color: #fcfcfd;
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    line-height: 26px;
    padding: 0 8px;
    text-transform: uppercase
}

.status-green {
    background: #45b26b
}

.status-purple {
    background: #9757d7
}

.status-black {
    background: #23262f
}

.status-stroke-black {
    box-shadow: inset 0 0 0 2px #e6e8ec;
    color: #777e90
}

.dark-mode .status-stroke-black {
    box-shadow: inset 0 0 0 2px #353945;
    color: #fcfcfd
}

.status-stroke-green {
    box-shadow: inset 0 0 0 2px #45b26b;
    color: #45b26b
}

.slick-slider {
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    box-sizing: border-box;
    touch-action: pan-y;
    -webkit-user-select: none;
    user-select: none;
    -khtml-user-select: none
}

.slick-list,
.slick-slider {
    display: block;
    position: relative
}

.slick-list {
    margin: 0;
    padding: 0
}

.slick-list:focus {
    outline: none
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand
}

.slick-slider .slick-list,
.slick-slider .slick-track {
    transform: translateZ(0)
}

.slick-track {
    display: block;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    top: 0
}

.slick-track:after,
.slick-track:before {
    content: "";
    display: table
}

.slick-track:after {
    clear: both
}

.slick-loading .slick-track {
    visibility: hidden
}

.nft_slider .slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
    padding: 0 6.5px;
    transition: all .2s ease-in-out
}

.nft_slider .slick-slide>div {
    display: flex;
    justify-content: center
}

.nft_slider .slick-active {
    scale: 1.16
}

@media only screen and (max-width:1179px) {
    .nft_slider .slick-active {
        scale: 1
    }
}

.nft_slider .slick-current {
    scale: 1.32
}

@media only screen and (max-width:1179px) {
    .nft_slider .slick-current {
        scale: 1.16
    }
}

.screenshot_slider .slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px
}

.screenshot_slider .slick-slide>div {
    display: flex;
    justify-content: center
}

[dir=rtl] .slick-slide {
    float: right
}

.slick-slide img {
    display: block
}

.slick-slide.slick-loading img {
    display: none
}

.slick-slide.dragging img {
    pointer-events: none
}

.slick-initialized .slick-slide {
    display: block
}

.slick-loading .slick-slide {
    visibility: hidden
}

.slick-vertical .slick-slide {
    border: 1px solid #0000;
    display: block;
    height: auto
}

.slick-arrow.slick-hidden {
    display: none
}

.slick-arrow {
    border-radius: 50%;
    font-size: 0;
    height: 40px;
    position: absolute;
    transition: all .2s;
    width: 40px;
    z-index: 2
}

[class^=section] {
    padding: 128px 0
}

@media only screen and (max-width:1339px) {
    [class^=section] {
        padding: 112px 0
    }
}

@media only screen and (max-width:767px) {
    [class^=section] {
        padding: 64px 0
    }
}

.section-bg {
    background: #f4f5f6
}

.dark-mode .section-bg {
    background: #23262f
}

.section-pb {
    padding-top: 0
}

@media only screen and (max-width:1179px) {
    .section-pb {
        padding-top: 0
    }
}

@media only screen and (max-width:767px) {
    .section-pb {
        padding-top: 0
    }
}

.section-pt {
    padding-bottom: 0
}

@media only screen and (max-width:1179px) {
    .section-pt {
        padding-bottom: 0
    }
}

@media only screen and (max-width:767px) {
    .section-pt {
        padding-bottom: 0
    }
}

.section-pt80 {
    padding-top: 80px
}

@media only screen and (max-width:1179px) {
    .section-pt80 {
        padding-top: 64px
    }
}

@media only screen and (max-width:767px) {
    .section-pt80 {
        padding-top: 32px
    }
}

[class^=button] {
    align-items: center;
    background: #11265b;
    border-radius: 24px;
    color: #fcfcfd;
    display: inline-flex;
    height: 48px;
    justify-content: center;
    padding: 0 24px;
    text-align: center;
    transition: all .2s
}

[class^=button]:hover {
    background: #091430
}

[class^=button]:disabled {
    opacity: .5;
    pointer-events: none
}

[class^=button].done {
    background: #b1b5c3
}

[class^=button].loading {
    background: #050b1b;
    font-size: 0
}

[class^=button].error {
    background: none;
    box-shadow: inset 0 0 0 2px #e6e8ec;
    color: #ef466f
}

.dark-mode [class^=button].error {
    box-shadow: inset 0 0 0 2px #777e90
}

[class^=button] svg {
    fill: #fcfcfd
}

[class^=button]:not([class^=button-circle]) svg:first-child {
    margin-right: 15px
}

[class^=button]:not([class^=button-circle]) svg:last-child {
    margin-left: 15px
}

.button-stroke {
    background: none;
    box-shadow: inset 0 0 0 2px #e6e8ec;
    color: #23262f
}

.button-stroke svg {
    fill: #23262f;
    transition: fill .2s
}

.button-stroke:hover {
    background: #11265b;
    box-shadow: inset 0 0 0 2px #11265b;
    color: #fcfcfd
}

.button-stroke:hover svg {
    fill: #fcfcfd
}

.dark-mode .button-stroke {
    box-shadow: inset 0 0 0 2px #353945;
    color: #fcfcfd
}

.dark-mode .button-stroke svg {
    fill: #fcfcfd
}

.dark-mode .button-stroke:hover {
    box-shadow: inset 0 0 0 2px #11265b
}

.button-pink {
    background: #ef466f
}

.button-pink:hover {
    background: #e41446
}

.button-small {
    border-radius: 20px;
    font-size: 14px;
    height: 40px;
    padding: 0 16px
}

.button-circle-stroke {
    background: #0000;
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px #e6e8ec;
    flex: 0 0 48px;
    height: 48px;
    padding: 0;
    transition: all .2s;
    width: 48px
}

.button-circle-stroke svg {
    fill: #777e90;
    transition: fill .2s
}

.button-circle-stroke:hover {
    background: #11265b;
    box-shadow: inset 0 0 0 2px #11265b
}

.button-circle-stroke:hover svg {
    fill: #fcfcfd
}

.dark-mode .button-circle-stroke {
    box-shadow: inset 0 0 0 2px #353945
}

.dark-mode .button-circle-stroke:hover {
    background: #353945
}

.button-circle-stroke.button-small {
    flex: 0 0 40px;
    height: 40px;
    width: 40px
}

.popup-overlay {
    background: #000000b3
}

[data-popup=tooltip].popup-overlay {
    background: #0000
}

.popup-content {
    -webkit-animation: anvil .3s cubic-bezier(.38, .1, .36, .9) forwards;
    border-radius: 5px;
    margin: auto;
    padding: 5px;
    width: -moz-fit-content;
    width: fit-content
}

.dark-mode .popup-content {
    background: #fcfcfd;
    color: #141416
}

@keyframes anvil {
    0% {
        box-shadow: 0 0 0 #f1f1f100;
        opacity: 0;
        transform: scale(1) translateY(0)
    }

    1% {
        box-shadow: 0 0 0 #f1f1f100;
        opacity: 0;
        transform: scale(.96) translateY(10px)
    }

    to {
        box-shadow: 0 0 500px #f1f1f100;
        opacity: 1;
        transform: scale(1) translateY(0)
    }
}

.popup-arrow {
    color: #141416
}

.dark-mode .popup-arrow {
    color: #fcfcfd
}

[role=tooltip].popup-content {
    background-color: #000;
    box-shadow: 0 0 3px #00000029;
    color: #fff;
    width: auto
}

nav {
    background-color: rgba(0, 0, 0, 0.7);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 3
}

@media only screen and (max-width:1179px) {
    nav {
        height: 128px;
        padding: 0 56px 0 54px
    }
}

@media only screen and (max-width:767px) {
    nav {
        height: 64px;
        padding: 0 28px 0 27px
    }
}

.v2_box_container__NYdB4 {
    align-items: center;
    display: flex;
    padding: 25px 0
}

@media only screen and (max-width:1179px) {
    .v2_box_container__NYdB4 {
        justify-content: space-between
    }
}

.v2_fixed_box_container__hci2q {
    align-items: center;
    background-color: #000;
    display: none;
    left: 0;
    padding: 20px 0;
    position: fixed;
    top: 69px;
    transition: all .2s ease-in-out;
    width: 100%;
    z-index: 3
}

@media only screen and (max-width:1179px) {
    .v2_fixed_box_container__hci2q {
        display: none !important
    }
}

.v2_mobile_menu__BN74r {
    display: none;
    float: left;
    height: 64px;
    width: 64px
}

.v2_mobile_menu__BN74r img {
    height: 100%;
    object-fit: cover;
    width: 100%
}

.v2_mobile_menu__BN74r:hover {
    opacity: .8
}

@media only screen and (max-width:1179px) {
    .v2_mobile_menu__BN74r {
        display: block;
        height: 64px;
        width: 64px
    }
}

@media only screen and (max-width:767px) {
    .v2_mobile_menu__BN74r {
        height: 32px;
        width: 32px
    }
}

.v2_logo_container__kTZEE {
    flex: 0 0 auto;
    margin-right: 32px
}

@media only screen and (max-width:1179px) {
    .v2_logo_container__kTZEE {
        flex: 0 0 226px
    }

    .v2_logo_container__kTZEE img {
        height: 100%;
        object-fit: cover;
        width: 100%
    }
}

@media only screen and (max-width:767px) {
    .v2_logo_container__kTZEE {
        flex: 0 0 113px
    }
}

.v2_logo__yeDKS {
    display: inline-block;
}

.v2_menu_bg__8qev9 {
    background: #0000;
    display: none;
    height: 100%;
    left: 0;
    position: fixed;
    transition: all .5s ease-in-out;
    width: 100%;
    z-index: 1
}

@media only screen and (max-width:1179px) {
    .v2_menu_bg__8qev9 {
        display: block;
        pointer-events: none;
        top: 128px
    }

    .v2_menu_bg__8qev9.v2_active__Hr\+OJ {
        -webkit-backdrop-filter: blur(2px);
        backdrop-filter: blur(2px);
        background: #0006
    }
}

@media only screen and (max-width:767px) {
    .v2_menu_bg__8qev9 {
        top: 64px
    }
}

.v2_menu_container__HYQiC {
    align-items: center;
    display: flex;
    flex: 1 0 auto;
    padding-left: 32px
}

.v2_menu_container__HYQiC .v2_logo_container__kTZEE {
    align-items: center;
    flex: 0 0 auto;
    margin-bottom: 58px;
    margin-left: 18px
}

@media only screen and (max-width:1179px) {
    .v2_menu_container__HYQiC .v2_logo_container__kTZEE {
        width: 226px
    }

    .v2_menu_container__HYQiC .v2_logo_container__kTZEE img {
        height: 100%;
        object-fit: cover;
        width: 100%
    }
}

@media only screen and (max-width:767px) {
    .v2_menu_container__HYQiC .v2_logo_container__kTZEE {
        margin-bottom: 29px;
        margin-left: 9px;
        width: 113px
    }
}

@media only screen and (max-width:1179px) {
    .v2_menu_container__HYQiC {
        align-items: flex-start;
        background: #14284e;
        border-bottom: 2px solid #b5b5b5;
        border-left: 2px solid #b5b5b5;
        border-radius: 0 0 0 88px;
        flex-direction: column;
        height: 720px;
        margin-top: 0;
        padding: 68px 54px 44px;
        position: fixed;
        right: -100%;
        top: 128px;
        transition: all .5s ease-in-out;
        width: 100%;
        z-index: 2
    }

    .v2_menu_container__HYQiC.v2_active__Hr\+OJ {
        right: calc(-100% + 512px)
    }
}

@media only screen and (max-width:767px) {
    .v2_menu_container__HYQiC {
        border-radius: 0 0 0 44px;
        height: 580px;
        padding: 34px 27px 22px;
        top: 64px
    }

    .v2_menu_container__HYQiC.v2_active__Hr\+OJ {
        right: calc(-100% + 256px)
    }
}

.v2_menu__MiKfX:not(:last-child) {
    margin-right: 32px
}

.v2_menu__MiKfX img {
    max-width: 32px;
    opacity: .6;
    transition: .2s;
}

.v2_menu__MiKfX:hover img {
    opacity: 1;
}

@media only screen and (max-width:1179px) {
    .v2_menu__MiKfX {
        display: block;
        height: auto;
        margin-left: 26px;
        text-align: left;
        width: auto
    }

    .v2_menu__MiKfX:not(:last-child) {
        margin-right: 0
    }

    .v2_menu__MiKfX:not(:first-child) {
        margin-bottom: 44px
    }
}

@media only screen and (max-width:767px) {
    .v2_menu__MiKfX {
        margin-left: 13px
    }

    .v2_menu__MiKfX:not(:first-child) {
        margin-bottom: 22px
    }
}

.v2_menu__MiKfX .v2_span__V69M5 {
    color: #a7a7a7;
    font-family: Bungee, sans-serif;
    font-size: 20px;
    line-height: 16px;
    transition: all .2s ease-in-out
}

.v2_menu__MiKfX .v2_span__V69M5:hover {
    color: #fff
}

.v2_menu__MiKfX .v2_span__V69M5.v2_disabled__OIBw9 {
    color: #a7a7a7;
    pointer-events: none
}

@media only screen and (max-width:1179px) {
    .v2_menu__MiKfX .v2_span__V69M5 {
        font-size: 40px;
        line-height: 32px
    }
}

@media only screen and (max-width:767px) {
    .v2_menu__MiKfX .v2_span__V69M5 {
        font-size: 20px;
        line-height: 16px
    }
}

.v2_menu__MiKfX .v2_expand_span__LryIP {
    color: #a7a7a7;
    cursor: pointer;
    font-family: Bungee, sans-serif;
    font-size: 14px;
    line-height: 16px;
    transition: all .2s ease-in-out
}

.v2_menu__MiKfX .v2_expand_span__LryIP:before {
    content: "▼";
    display: inline-block;
    margin-right: 4px;
    transition: transform .2s ease-in-out
}

.v2_menu__MiKfX .v2_expand_span__LryIP.v2_expanded__HyUBH {
    color: #fff
}

.v2_menu__MiKfX .v2_expand_span__LryIP.v2_expanded__HyUBH:before {
    transform: rotateX(180deg)
}

@media only screen and (max-width:1179px) {
    .v2_menu__MiKfX .v2_expand_span__LryIP {
        font-size: 40px;
        line-height: 32px
    }

    .v2_menu__MiKfX .v2_expand_span__LryIP:before {
        margin-right: 8px
    }
}

@media only screen and (max-width:767px) {
    .v2_menu__MiKfX .v2_expand_span__LryIP {
        font-size: 20px;
        line-height: 16px
    }

    .v2_menu__MiKfX .v2_expand_span__LryIP:before {
        margin-right: 4px
    }
}

@media only screen and (max-width:1179px) {
    .v2_menu__MiKfX button {
        font-size: 28px;
        line-height: 30px
    }
}

.v2_menu__MiKfX .v2_expand_container__YSa1t {
    display: none
}

@media only screen and (max-width:1179px) {
    .v2_menu__MiKfX .v2_expand_container__YSa1t {
        display: flex;
        flex-direction: column;
        margin-left: 32px
    }
}

@media only screen and (max-width:767px) {
    .v2_menu__MiKfX .v2_expand_container__YSa1t {
        margin-left: 16px
    }
}

.v2_menu__MiKfX .v2_expand_container__YSa1t .v2_sub_menu__UgWm3 {
    margin-top: 46px
}

@media only screen and (max-width:767px) {
    .v2_menu__MiKfX .v2_expand_container__YSa1t .v2_sub_menu__UgWm3 {
        margin-top: 23px
    }
}

.v2_menu__MiKfX .v2_expand_container__YSa1t .v2_sub_menu__UgWm3 .v2_span__V69M5 {
    font-family: Montserrat;
    font-size: 28px;
    line-height: 32px
}

@media only screen and (max-width:767px) {
    .v2_menu__MiKfX .v2_expand_container__YSa1t .v2_sub_menu__UgWm3 .v2_span__V69M5 {
        font-size: 14px;
        line-height: 16px
    }
}

.v2_space__0TnIY {
    flex: 1 0;
    height: 1px
}

.v2_connect__Dz5Je {
    display: inline-block;
    height: 40px;
    margin-left: auto
}

@media only screen and (max-width:1179px) {
    .v2_connect__Dz5Je {
        flex: 0 0 auto;
        margin-bottom: 58px;
        margin-left: 124px;
        margin-top: auto
    }
}

@media only screen and (max-width:767px) {
    .v2_connect__Dz5Je {
        margin-bottom: 29px;
        margin-left: 62px
    }
}

.v2_copy_right_box__aNYj8 {
    color: #a7a7a7;
    font-family: poppins-medium, sans-serif;
    font-size: 20px;
    text-align: center
}

@media only screen and (max-width:767px) {
    .v2_copy_right_box__aNYj8 {
        font-size: 10px
    }
}

.User_user__6V9DF {
    position: relative;
    z-index: 4
}

@media only screen and (max-width:767px) {
    .User_user__6V9DF {
        position: static
    }
}

.User_user__6V9DF .User_login_box__y3ERQ {
    display: flex
}

.User_user__6V9DF .User_login_box__y3ERQ .User_login_button__odovZ {
    margin-top: -3px;
    background: #fff;
    border-radius: 90px;
    display: flex;
    gap: 12px;
    /* height: 40px; */
    /* padding: 12px 16px; */
    padding: 15px 40px;
    border-radius: 14px;
    transition: box-shadow .3s ease-in-out
}

.User_user__6V9DF .User_login_box__y3ERQ .User_login_button__odovZ:hover {
    box-shadow: 0 0 5px 5px #ffffffb3
}

.User_user__6V9DF .User_login_box__y3ERQ .User_login_button__odovZ span {
    color: #14284e;
    font-family: Bungee, sans-serif;
    font-size: 24px;
    font-weight: 400;
    justify-content: center;
    line-height: 16px;
    text-align: center;
    width: 100%;
}

@media only screen and (max-width:1179px) {
    .User_user__6V9DF .User_login_box__y3ERQ .User_login_button__odovZ {
        padding: 12px 36px
    }

    .User_user__6V9DF .User_login_box__y3ERQ .User_login_button__odovZ span {
        font-size: 24px;
        line-height: 32px
    }
}

@media only screen and (max-width:767px) {
    .User_user__6V9DF .User_login_box__y3ERQ .User_login_button__odovZ {
        padding: 12px 18px
    }

    .User_user__6V9DF .User_login_box__y3ERQ .User_login_button__odovZ span {
        font-size: 12px;
        line-height: 16px
    }
}

@media only screen and (max-width:1179px) {
    .User_user__6V9DF .User_outer__269rN {
        -webkit-backdrop-filter: blur(2px);
        backdrop-filter: blur(2px);
        background: #000000ab;
        height: 100%;
        left: 0;
        position: fixed;
        top: 0;
        width: 100%
    }
}

.User_user__6V9DF .User_body__RjHIn {
    animation: User_showUser__W-VUE .4s forwards;
    background: #fcfcfd;
    border-radius: 12px;
    box-shadow: 0 16px 64px 0 #1f2f4666;
    left: 50%;
    margin-left: -128px;
    opacity: 0;
    padding: 32px 16px 20px;
    position: absolute;
    top: calc(100% + 20px);
    transform: scale(.9);
    transform-origin: 50% 50px;
    width: 256px;
    will-change: transform;
    z-index: 3
}

@media only screen and (max-width:1339px) {
    .User_user__6V9DF .User_body__RjHIn {
        left: auto;
        right: 0
    }
}

@media only screen and (max-width:1179px) {
    .User_user__6V9DF .User_body__RjHIn {
        left: calc(50% - 128px);
        margin: 0;
        position: fixed;
        top: auto;
        top: calc(50% - 300px)
    }
}

.User_user__6V9DF .User_body__RjHIn:before {
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg width='32' height='13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.343 2.657 0 13h32L21.657 2.657a8 8 0 0 0-11.314 0Z' fill='%23FCFCFD'/%3E%3C/svg%3E") no-repeat 100% 50%/100% auto;
    bottom: 100%;
    content: "";
    height: 13px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 32px
}

@media only screen and (max-width:1339px) {
    .User_user__6V9DF .User_body__RjHIn:before {
        left: 80%
    }
}

@media only screen and (max-width:1179px) {
    .User_user__6V9DF .User_body__RjHIn:before {
        display: none
    }
}

.dark-mode .User_user__6V9DF .User_body__RjHIn {
    background: #23262f
}

.dark-mode .User_user__6V9DF .User_body__RjHIn:before {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='32' height='13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.343 2.657 0 13h32L21.657 2.657a8 8 0 0 0-11.314 0Z' fill='%2323262F'/%3E%3C/svg%3E")
}

@keyframes User_showUser__W-VUE {
    0% {
        opacity: 0;
        transform: scale(.9)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

.User_user__6V9DF .User_body__RjHIn .User_name__m9NDM {
    color: #11265b;
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    overflow: hidden;
    text-overflow: ellipsis
}

.User_user__6V9DF .User_body__RjHIn .User_code__cl8pf {
    align-items: center;
    display: flex;
    margin-bottom: 8px
}

.User_user__6V9DF .User_body__RjHIn .User_code__cl8pf .User_number__FNUnL {
    color: #777e90;
    font-weight: 500
}

.User_user__6V9DF .User_body__RjHIn .User_code__cl8pf .User_copy__Wn\+x3 {
    margin-left: 8px
}

.User_user__6V9DF .User_body__RjHIn .User_code__cl8pf .User_copy__Wn\+x3 svg {
    fill: #b8b8b8;
    transition: fill .2s
}

.User_user__6V9DF .User_body__RjHIn .User_code__cl8pf .User_copy__Wn\+x3:hover svg {
    fill: #11265b
}

.User_user__6V9DF .User_body__RjHIn .User_wrap__F3OVr {
    border-radius: 16px;
    margin-bottom: 7px;
    padding: 8px
}

.User_user__6V9DF .User_body__RjHIn .User_wrap__F3OVr .User_token_container__xzM10 {
    border-top: 2px solid #c7c7c7
}

.User_user__6V9DF .User_body__RjHIn .User_wrap__F3OVr .User_token_container__xzM10 .User_chain_container__4y5pZ .User_chain_box__Qvo9d {
    align-items: center;
    color: #777e90;
    display: flex;
    flex-direction: row;
    font-family: Bungee, sans-serif;
    font-size: 14px;
    margin-top: 8px
}

.User_user__6V9DF .User_body__RjHIn .User_wrap__F3OVr .User_token_container__xzM10 .User_chain_container__4y5pZ .User_chain_box__Qvo9d img {
    height: 20px;
    margin-right: 7px;
    width: 20px
}

.User_user__6V9DF .User_body__RjHIn .User_wrap__F3OVr .User_token_container__xzM10 .User_chain_container__4y5pZ .User_view_more__qu6XO {
    background: #fcfcfd;
    border-radius: 16px;
    box-shadow: 0 24px 24px -16px #0f0f0f33;
    color: #777e90;
    font-family: Bungee, sans-serif;
    font-size: 18px;
    margin-top: 8px;
    padding: 8px;
    text-align: center;
    width: 100%
}

.User_user__6V9DF .User_body__RjHIn .User_wrap__F3OVr .User_token_container__xzM10 .User_chain_container__4y5pZ .User_line__Bmlox {
    background: #fcfcfd;
    border-radius: 16px;
    box-shadow: 0 24px 24px -16px #0f0f0f33;
    margin-top: 8px;
    padding: 8px
}

.User_user__6V9DF .User_body__RjHIn .User_wrap__F3OVr .User_token_container__xzM10 .User_chain_container__4y5pZ .User_line__Bmlox .User_info__NjY7X {
    color: #777e90;
    font-size: 12px;
    line-height: 20px
}

.User_user__6V9DF .User_body__RjHIn .User_wrap__F3OVr .User_token_container__xzM10 .User_chain_container__4y5pZ .User_line__Bmlox .User_details__84\+x- {
    align-items: center;
    display: flex
}

.User_user__6V9DF .User_body__RjHIn .User_wrap__F3OVr .User_token_container__xzM10 .User_chain_container__4y5pZ .User_line__Bmlox .User_details__84\+x- .User_preview__TY4tc {
    flex-shrink: 0;
    height: 30px;
    width: 30px
}

.User_user__6V9DF .User_body__RjHIn .User_wrap__F3OVr .User_token_container__xzM10 .User_chain_container__4y5pZ .User_line__Bmlox .User_details__84\+x- .User_preview__TY4tc img {
    height: 30px;
    width: 30px
}

.User_user__6V9DF .User_body__RjHIn .User_wrap__F3OVr .User_token_container__xzM10 .User_chain_container__4y5pZ .User_line__Bmlox .User_details__84\+x- .User_price_container__Dg1mL {
    margin-left: 9px
}

.User_user__6V9DF .User_body__RjHIn .User_wrap__F3OVr .User_token_container__xzM10 .User_chain_container__4y5pZ .User_line__Bmlox .User_details__84\+x- .User_name__m9NDM {
    color: #777e90;
    font-family: Bungee, sans-serif;
    font-size: 10px;
    line-height: 10px
}

.User_user__6V9DF .User_body__RjHIn .User_wrap__F3OVr .User_token_container__xzM10 .User_chain_container__4y5pZ .User_line__Bmlox .User_details__84\+x- .User_price__CqRWu {
    color: #777e90;
    font-family: Bungee, sans-serif;
    font-size: 18px;
    line-height: 18px;
    margin-top: 3px
}

.User_user__6V9DF .User_body__RjHIn .User_wrap__F3OVr .User_token_container__xzM10 .User_chain_container__4y5pZ .User_line__Bmlox .User_details__84\+x- .User_loading__KVgGy {
    color: #7554d642;
    font-size: 18px;
    height: 18px;
    margin-top: 3px;
    width: 18px
}

.User_user__6V9DF .User_body__RjHIn .User_wrap__F3OVr .User_token_container__xzM10 .User_chain_container__4y5pZ .User_button__k6dY5 {
    background: none;
    border-radius: 20px;
    box-shadow: inset 0 0 0 2px #e6e8ec;
    color: #23262f;
    font-size: 14px;
    height: 32px;
    justify-content: center;
    padding: 0 10px;
    width: 100%
}

.dark-mode .User_user__6V9DF .User_body__RjHIn .User_wrap__F3OVr .User_token_container__xzM10 .User_chain_container__4y5pZ .User_button__k6dY5 {
    color: #f4f5f6
}

.User_user__6V9DF .User_body__RjHIn .User_wrap__F3OVr .User_token_container__xzM10 .User_chain_container__4y5pZ .User_button__k6dY5:hover {
    background: #3772ff;
    box-shadow: inset 0 0 0 2px #3772ff;
    color: #fcfcfd
}

.User_user__6V9DF .User_body__RjHIn .User_wrap__F3OVr .User_token_container__xzM10 .User_chain_container__4y5pZ .User_button__k6dY5:hover svg {
    fill: #fcfcfd
}

.User_user__6V9DF .User_body__RjHIn .User_saparator__cGBzS {
    background: #e6e8ec;
    height: 1px
}

.User_user__6V9DF .User_body__RjHIn .User_menu__FtvLI .User_item__2yr0R {
    align-items: center;
    color: #777e90;
    display: flex;
    padding: 17px 0 12px
}

.User_user__6V9DF .User_body__RjHIn .User_menu__FtvLI .User_item__2yr0R:not(:last-child) {
    border-bottom: 1px solid #e6e8ec
}

.dark-mode .User_user__6V9DF .User_body__RjHIn .User_menu__FtvLI .User_item__2yr0R:not(:last-child) {
    border-color: #353945
}

.User_user__6V9DF .User_body__RjHIn .User_menu__FtvLI .User_item__2yr0R[href]:hover {
    color: #8a043f
}

.User_user__6V9DF .User_body__RjHIn .User_menu__FtvLI .User_item__2yr0R[href]:hover path:first-child,
.User_user__6V9DF .User_body__RjHIn .User_menu__FtvLI .User_item__2yr0R[href]:hover svg {
    fill: #8a043f
}

.User_user__6V9DF .User_body__RjHIn .User_menu__FtvLI .User_item__2yr0R[href]:hover .User_text__X7\+y6 {
    color: #575e70
}

.User_user__6V9DF .User_body__RjHIn .User_menu__FtvLI .User_item__2yr0R[href]:hover .User_red_text__H8\+hQ {
    color: #8a043f
}

.User_user__6V9DF .User_body__RjHIn .User_menu__FtvLI .User_item__2yr0R .User_icon__FXFYQ {
    flex-shrink: 0;
    margin-right: 8px;
    width: 20px
}

.User_user__6V9DF .User_body__RjHIn .User_menu__FtvLI .User_item__2yr0R .User_icon__FXFYQ svg {
    fill: #fa047f;
    transition: fill .2s
}

.User_user__6V9DF .User_body__RjHIn .User_menu__FtvLI .User_item__2yr0R .User_icon__FXFYQ img {
    height: 20px;
    width: 20px
}

.User_user__6V9DF .User_body__RjHIn .User_menu__FtvLI .User_item__2yr0R .User_text__X7\+y6 {
    color: #777e90;
    margin-right: auto;
    transition: color .2s
}

.User_user__6V9DF .User_body__RjHIn .User_menu__FtvLI .User_item__2yr0R .User_red_text__H8\+hQ {
    color: #fa047f;
    margin-right: auto;
    transition: color .2s
}

.User_user__6V9DF .User_body__RjHIn .User_close_btn_container__dn590 {
    display: none;
    margin-top: 19px;
    text-align: center
}

@media only screen and (max-width:1179px) {
    .User_user__6V9DF .User_body__RjHIn .User_close_btn_container__dn590 {
        display: block
    }
}

.User_user__6V9DF .User_body__RjHIn .User_close_btn_container__dn590 .User_close_btn__o7w5\+ {
    background-color: #b3b3b3;
    border-radius: 20px;
    color: #fff;
    font-family: poppins-medium, sans-serif;
    font-size: 20px;
    height: 36px;
    padding: 3px 52px
}

.linkbutton_button__OhQv\+ {
    display: inline-block
}

.Loading_box__d5Hn8 {
    align-items: center;
    display: flex;
    justify-content: center;
    text-align: center
}

.Loading_loader__RGeXw {
    animation: Loading_mltShdSpin__OvSFm 1.7s ease infinite, Loading_round__3fkxl 1.7s ease infinite;
    border-radius: 50%;
    height: 1em;
    overflow: hidden;
    position: relative;
    scale: .5;
    text-indent: -9999em;
    transform: translateZ(0);
    width: 1em
}

@keyframes Loading_mltShdSpin__OvSFm {
    0% {
        box-shadow: 0 -.83em 0 -.4em, 0 -.83em 0 -.42em, 0 -.83em 0 -.44em, 0 -.83em 0 -.46em, 0 -.83em 0 -.477em
    }

    5% {
        box-shadow: 0 -.83em 0 -.4em, 0 -.83em 0 -.42em, 0 -.83em 0 -.44em, 0 -.83em 0 -.46em, 0 -.83em 0 -.477em
    }

    95% {
        box-shadow: 0 -.83em 0 -.4em, 0 -.83em 0 -.42em, 0 -.83em 0 -.44em, 0 -.83em 0 -.46em, 0 -.83em 0 -.477em
    }

    10% {
        box-shadow: 0 -.83em 0 -.4em, -.087em -.825em 0 -.42em, -.173em -.812em 0 -.44em, -.256em -.789em 0 -.46em, -.297em -.775em 0 -.477em
    }

    59% {
        box-shadow: 0 -.83em 0 -.4em, -.087em -.825em 0 -.42em, -.173em -.812em 0 -.44em, -.256em -.789em 0 -.46em, -.297em -.775em 0 -.477em
    }

    20% {
        box-shadow: 0 -.83em 0 -.4em, -.338em -.758em 0 -.42em, -.555em -.617em 0 -.44em, -.671em -.488em 0 -.46em, -.749em -.34em 0 -.477em
    }

    38% {
        box-shadow: 0 -.83em 0 -.4em, -.377em -.74em 0 -.42em, -.645em -.522em 0 -.44em, -.775em -.297em 0 -.46em, -.82em -.09em 0 -.477em
    }

    to {
        box-shadow: 0 -.83em 0 -.4em, 0 -.83em 0 -.42em, 0 -.83em 0 -.44em, 0 -.83em 0 -.46em, 0 -.83em 0 -.477em
    }
}

@keyframes Loading_round__3fkxl {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn)
    }
}

footer {
    background: rgb(30, 30, 30)
}

@media only screen and (max-width:1179px) {
    footer {
        padding: 0 66px
    }
}

@media only screen and (max-width:767px) {
    footer {
        padding: 0 33px
    }
}

.v2_upper_container__\+deix {
    align-items: flex-start;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-top: 56px
}

@media only screen and (max-width:1179px) {
    .v2_upper_container__\+deix {
        flex-direction: column;
        padding-top: 60px
    }
}

@media only screen and (max-width:767px) {
    .v2_upper_container__\+deix {
        padding-top: 30px
    }
}

.v2_left_container__kRmr7 {
    align-items: flex-start;
    display: flex;
    flex-direction: column
}

@media only screen and (max-width:1179px) {
    .v2_left_container__kRmr7 {
        width: 100%
    }
}

.v2_logo__Yq\+8j {
    max-width: 140px;
}

@media only screen and (max-width:1179px) {
    .v2_logo__Yq\+8j {
        height: 82px;
        width: 306px
    }
}

@media only screen and (max-width:767px) {
    .v2_logo__Yq\+8j {
        height: 41px;
        width: 153px
    }
}

.v2_link_container__-kD5I {
    align-items: flex-start;
    display: flex;
    flex-direction: row;
    margin-top: 39px
}

@media only screen and (max-width:1179px) {
    .v2_link_container__-kD5I {
        margin-top: 76px
    }
}

@media only screen and (max-width:767px) {
    .v2_link_container__-kD5I {
        margin-top: 38px
    }
}

.v2_column__-Yh-E {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    margin-left: 46px
}

@media only screen and (max-width:1179px) {
    .v2_column__-Yh-E {
        margin-left: 20px
    }
}

@media only screen and (max-width:767px) {
    .v2_column__-Yh-E {
        margin-left: 10px
    }
}

.v2_link_item__mIEwA {
    color: #fff;
    font-family: poppins-medium, sans-serif;
    font-size: 16px
}

.v2_link_item__mIEwA a {
    color: #fff
}

.v2_link_item__mIEwA a:hover {
    color: #ddd
}

.v2_link_item__mIEwA:before {
    background: #fff;
    border-radius: 50%;
    content: "";
    display: inline-block;
    height: 4px;
    margin-bottom: 4px;
    margin-right: 10px;
    width: 4px
}

.v2_link_item__mIEwA:not(:last-child) {
    padding-bottom: 10px
}

@media only screen and (max-width:1179px) {
    .v2_link_item__mIEwA:not(:last-child) {
        padding-bottom: 20px
    }

    .v2_link_item__mIEwA {
        font-size: 24px
    }
}

@media only screen and (max-width:767px) {
    .v2_link_item__mIEwA {
        font-size: 12px
    }
}

.v2_right_container__PGcfO {
    align-items: flex-end;
    display: flex;
    flex-direction: column;
    margin-left: auto
}

@media only screen and (max-width:1179px) {
    .v2_right_container__PGcfO {
        align-items: center;
        justify-content: center;
        margin-top: 178px;
        width: 100%
    }
}

@media only screen and (max-width:767px) {
    .v2_right_container__PGcfO {
        margin-top: 89px
    }
}

.v2_social_container__xWE-K {
    display: flex;
    flex-direction: row
}

.v2_social_button__pXF3U {
    height: 45px;
    transition: all .1s ease-in-out;
    width: 45px
}

.v2_social_button__pXF3U:hover {
    scale: 1.1
}

.v2_social_button__pXF3U:not(:last-child) {
    margin-right: 10px
}

@media only screen and (max-width:1179px) {
    .v2_social_button__pXF3U {
        height: 90px;
        width: 90px
    }

    .v2_social_button__pXF3U:hover {
        scale: 1
    }

    .v2_social_button__pXF3U:not(:last-child) {
        margin-right: 20px
    }
}

@media only screen and (max-width:767px) {
    .v2_social_button__pXF3U {
        height: 45px;
        width: 45px
    }

    .v2_social_button__pXF3U:not(:last-child) {
        margin-right: 10px
    }
}

.v2_copyright__ojs7u {
    color: #fff;
    font-size: 13px;
    line-height: 16px;
    padding: 50px 0;
    text-align: center
}

@media only screen and (max-width:1179px) {
    .v2_copyright__ojs7u {
        font-size: 20px;
        line-height: auto;
        padding: 62px 0 86px
    }
}

@media only screen and (max-width:767px) {
    .v2_copyright__ojs7u {
        font-size: 10px;
        padding: 31px 0 43px
    }
}

.WalletProvider_outer_modal__tZ\+Yq {
    background: #dbcff6 !important;
    border-radius: 20px;
    max-height: 100%;
    padding: 23px 32px 28px !important;
    width: 398px !important
}

@media only screen and (max-width:1179px) {
    .WalletProvider_outer_modal__tZ\+Yq {
        padding: 29px 23px 46px !important;
        width: 100%
    }
}

.WalletProvider_modal_container__e8ZhL .WalletProvider_modal_header__f-nAy {
    color: #11265b;
    font-family: Bungee, sans-serif;
    font-size: 32px;
    letter-spacing: -.32px;
    line-height: 40px
}

@media only screen and (max-width:1179px) {
    .WalletProvider_modal_container__e8ZhL .WalletProvider_modal_header__f-nAy {
        font-size: 32px;
        line-height: normal;
        padding-right: 50px
    }
}

.WalletProvider_modal_container__e8ZhL .WalletProvider_modal_body__m2ThX {
    margin-top: 44px;
    max-height: 383px;
    overflow-y: auto;
    padding-right: 16px
}

.WalletProvider_modal_container__e8ZhL .WalletProvider_modal_body__m2ThX::-webkit-scrollbar-thumb {
    background-color: #969696
}

.WalletProvider_modal_container__e8ZhL .WalletProvider_modal_body__m2ThX::-webkit-scrollbar-track {
    background-color: #fafafa;
    border-radius: 10px
}

@media only screen and (max-width:1179px) {
    .WalletProvider_modal_container__e8ZhL .WalletProvider_modal_body__m2ThX {
        margin-top: 11px;
        max-height: 383px;
        overflow-y: scroll;
        padding-right: 7px
    }
}

.WalletProvider_modal_container__e8ZhL .WalletProvider_wallet_item__bsEv0 {
    background: #12265bcc;
    border-radius: 20px;
    padding: 9px 14px 10px 13px
}

@media only screen and (max-width:1179px) {
    .WalletProvider_modal_container__e8ZhL .WalletProvider_wallet_item__bsEv0 {
        padding: 9px 11px
    }
}

.WalletProvider_modal_container__e8ZhL .WalletProvider_wallet_item__bsEv0:not(:first-child) {
    margin-top: 12px
}

@media only screen and (max-width:1179px) {
    .WalletProvider_modal_container__e8ZhL .WalletProvider_wallet_item__bsEv0:not(:first-child) {
        margin-top: 14px
    }
}

.WalletProvider_modal_container__e8ZhL .WalletProvider_wallet_item__bsEv0.WalletProvider_disabled__5ApKc {
    background: #55658fcc
}

.WalletProvider_modal_container__e8ZhL .WalletProvider_wallet_item__bsEv0.WalletProvider_disabled__5ApKc .WalletProvider_wallet_connect__4iuHY button {
    background: #b3b3b3;
    pointer-events: none
}

.WalletProvider_modal_container__e8ZhL .WalletProvider_wallet_item__bsEv0.WalletProvider_connected__rBtKP .WalletProvider_wallet_connect__4iuHY button {
    background: #fc6868
}

.WalletProvider_modal_container__e8ZhL .WalletProvider_wallet_inner_row__8u9u\+ {
    align-items: center;
    display: flex;
    flex: 1 0 auto;
    justify-content: space-between
}

@media only screen and (max-width:1179px) {
    .WalletProvider_modal_container__e8ZhL .WalletProvider_wallet_inner_row__8u9u\+ {
        align-items: flex-start;
        flex-direction: column;
        margin-left: 10px
    }
}

.WalletProvider_modal_container__e8ZhL .WalletProvider_wallet_row__jf1lP {
    align-items: center;
    display: flex
}

.WalletProvider_modal_container__e8ZhL .WalletProvider_wallet_row__jf1lP:not(:first-child) {
    justify-content: flex-end;
    margin-top: 9px
}

.WalletProvider_modal_container__e8ZhL .WalletProvider_wallet_name__HvHQW {
    color: #fff;
    font-family: Bungee, sans-serif;
    font-size: 18px;
    line-height: normal;
    margin-left: 9px
}

@media only screen and (max-width:1179px) {
    .WalletProvider_modal_container__e8ZhL .WalletProvider_wallet_name__HvHQW {
        font-size: 15px;
        margin-left: 0
    }
}

.WalletProvider_modal_container__e8ZhL .WalletProvider_wallet_address__1q6b1 {
    color: #fff;
    font-size: 12px;
    line-height: normal;
    text-align: end
}

@media only screen and (max-width:1179px) {
    .WalletProvider_modal_container__e8ZhL .WalletProvider_wallet_address__1q6b1 {
        font-size: 8px
    }
}

.WalletProvider_modal_container__e8ZhL .WalletProvider_wallet_icon__PmEHs {
    height: 30px;
    width: 30px
}

.WalletProvider_modal_container__e8ZhL .WalletProvider_wallet_icon__PmEHs img {
    height: 100%;
    object-fit: cover;
    width: 100%
}

.WalletProvider_modal_container__e8ZhL .WalletProvider_wallet_connect__4iuHY button {
    background: #3ccaa8;
    border-radius: 50px;
    color: #fff;
    font-family: poppins-medium, sans-serif;
    font-size: 15px;
    line-height: normal;
    padding: 3px 0;
    text-align: center;
    transition: all .3s ease-in-out;
    width: 158px
}

.WalletProvider_modal_container__e8ZhL .WalletProvider_wallet_connect__4iuHY button:hover {
    transform: scale(1.05)
}

@media only screen and (max-width:1179px) {
    .WalletProvider_modal_container__e8ZhL .WalletProvider_wallet_connect__4iuHY button {
        border-radius: 20px;
        font-size: 12px;
        padding: 5px 0;
        width: 100%
    }

    .WalletProvider_modal_container__e8ZhL .WalletProvider_wallet_connect__4iuHY {
        width: 100%
    }
}

.WalletProvider_modal_container__e8ZhL .WalletProvider_wallet_connect__4iuHY.WalletProvider_loading__SNfRL button {
    background-color: #3ccaa880;
    cursor: auto;
    pointer-events: none
}

.WalletProvider_modal_container__e8ZhL .WalletProvider_modal_footer__Evu9P {
    flex: 0 0 115px;
    margin-top: 28px
}

@media only screen and (max-width:1179px) {
    .WalletProvider_modal_container__e8ZhL .WalletProvider_modal_footer__Evu9P {
        margin: 24px 14px 0
    }
}

.WalletProvider_modal_container__e8ZhL .WalletProvider_modal_footer__Evu9P .WalletProvider_modal_footer_text__stC4k {
    color: #11265b;
    font-size: 12px;
    line-height: normal;
    text-align: center
}

@media only screen and (max-width:1179px) {
    .WalletProvider_modal_container__e8ZhL .WalletProvider_modal_footer__Evu9P .WalletProvider_modal_footer_text__stC4k {
        font-size: 8px
    }
}

.WalletProvider_modal_container__e8ZhL .WalletProvider_modal_footer__Evu9P .WalletProvider_modal_footer_button__CkJVD {
    margin-top: 38px;
    text-align: center
}

@media only screen and (max-width:1179px) {
    .WalletProvider_modal_container__e8ZhL .WalletProvider_modal_footer__Evu9P .WalletProvider_modal_footer_button__CkJVD {
        margin-top: 36px
    }
}

.WalletProvider_modal_container__e8ZhL .WalletProvider_modal_footer__Evu9P .WalletProvider_modal_footer_button__CkJVD a {
    background: #5458ad;
    border-radius: 50px;
    color: #fff;
    display: inline-block;
    font-family: poppins-medium, sans-serif;
    font-size: 18px;
    line-height: normal;
    padding: 7px 30px;
    text-align: center;
    transition: all .3s ease-in-out
}

.WalletProvider_modal_container__e8ZhL .WalletProvider_modal_footer__Evu9P .WalletProvider_modal_footer_button__CkJVD a:hover {
    transform: scale(1.05)
}

@media only screen and (max-width:1179px) {
    .WalletProvider_modal_container__e8ZhL .WalletProvider_modal_footer__Evu9P .WalletProvider_modal_footer_button__CkJVD a {
        font-size: 16px;
        padding: 6px 27px
    }
}

.WalletProvider_outer_confirm_modal__X8gys {
    background: #fcfcfd !important;
    border-radius: 20px;
    box-shadow: 0 64px 64px -48px #1f2f461f;
    padding: 32px !important;
    width: 448px !important
}

@media only screen and (max-width:1179px) {
    .WalletProvider_outer_confirm_modal__X8gys {
        padding: 29px 23px 38px !important;
        width: 100%
    }
}

.WalletProvider_confirm_modal_container__oqInA .WalletProvider_confirm_modal_header__NoccC {
    color: #23262f;
    font-family: Bungee, sans-serif;
    font-size: 32px;
    line-height: 40px
}

@media only screen and (max-width:1179px) {
    .WalletProvider_confirm_modal_container__oqInA .WalletProvider_confirm_modal_header__NoccC {
        font-size: 32px;
        line-height: normal;
        padding-right: 50px
    }
}

.WalletProvider_confirm_modal_container__oqInA .WalletProvider_confirm_modal_body__0lYc3 {
    color: #23262f;
    font-size: 16px;
    line-height: 24px;
    margin-top: 32px
}

@media only screen and (max-width:1179px) {
    .WalletProvider_confirm_modal_container__oqInA .WalletProvider_confirm_modal_body__0lYc3 {
        font-size: 10px;
        line-height: normal;
        margin-top: 17px
    }
}

.WalletProvider_confirm_modal_container__oqInA .WalletProvider_confirm_modal_qr__w6mPf {
    margin: 26px 0 0;
    text-align: center
}

.WalletProvider_confirm_modal_container__oqInA .WalletProvider_confirm_modal_qr__w6mPf .WalletProvider_confirm_modal_body__0lYc3 {
    text-align: left
}

@media only screen and (max-width:1179px) {
    .WalletProvider_confirm_modal_container__oqInA .WalletProvider_confirm_modal_qr__w6mPf .WalletProvider_confirm_modal_body__0lYc3 {
        font-size: 8px;
        text-align: center
    }
}

.WalletProvider_confirm_modal_container__oqInA .WalletProvider_confirm_modal_qr__w6mPf .WalletProvider_confirm_modal_qr_body__Zyl4u {
    color: #11265b;
    font-size: 8px;
    line-height: normal;
    margin: 22px 33px 0;
    text-align: center
}

.WalletProvider_confirm_modal_container__oqInA .WalletProvider_confirm_modal_footer__MZ4sr {
    margin-top: 32px
}

.WalletProvider_confirm_modal_container__oqInA .WalletProvider_confirm_modal_footer__MZ4sr .WalletProvider_confirm_modal_btn__bE9qC {
    background: #12265b;
    border-radius: 90px;
    color: #fff;
    font-family: poppins-medium, sans-serif;
    padding: 16px 0;
    transition: all .3s ease-in-out;
    width: 100%
}

.WalletProvider_confirm_modal_container__oqInA .WalletProvider_confirm_modal_footer__MZ4sr .WalletProvider_confirm_modal_btn__bE9qC.WalletProvider_error__JM-J6 {
    background: #fee500;
    color: #11265b
}

.WalletProvider_confirm_modal_container__oqInA .WalletProvider_confirm_modal_footer__MZ4sr .WalletProvider_confirm_modal_btn__bE9qC:hover {
    transform: scale(1.05)
}

@media only screen and (max-width:1179px) {
    .WalletProvider_confirm_modal_container__oqInA .WalletProvider_confirm_modal_footer__MZ4sr .WalletProvider_confirm_modal_btn__bE9qC {
        font-size: 16px;
        padding: 6px 0
    }
}

.Modal_modal__asoBj {
    animation: Modal_showModal__9QSyr .4s forwards;
    background: #141416e6;
    display: flex;
    height: 100%;
    left: 0;
    opacity: 0;
    overflow: auto;
    overflow: hidden;
    padding: 48px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999
}

@media only screen and (max-width:1179px) {
    .Modal_modal__asoBj {
        padding: 38px
    }
}

.dark-mode .Modal_modal__asoBj {
    background: #23262fe6
}

@keyframes Modal_showModal__9QSyr {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.Modal_modal__asoBj .Modal_outer__Nbk3U {
    background: #fff;
    border-radius: 20px;
    margin: auto;
    max-width: 603px;
    padding: 29px 68px 50px;
    position: relative;
    width: 100%;
    z-index: 2
}

.Modal_modal__asoBj .Modal_outer__Nbk3U .Modal_container__tHPTG .Modal_close__vdQDB {
    font-size: 0;
    height: 40px;
    position: absolute;
    right: 32px;
    top: 32px;
    transition: transform .2s ease-in-out;
    width: 40px
}

.Modal_modal__asoBj .Modal_outer__Nbk3U .Modal_container__tHPTG .Modal_close__vdQDB:hover {
    transform: rotate(90deg)
}

@media only screen and (max-width:1179px) {
    .Modal_modal__asoBj .Modal_outer__Nbk3U .Modal_container__tHPTG .Modal_close__vdQDB {
        right: 23px;
        top: 29px
    }

    .Modal_modal__asoBj .Modal_outer__Nbk3U {
        padding: 29px 23px 33px
    }
}

[data-rk] .iekbcc0 {
    -webkit-tap-highlight-color: transparent;
    border: 0;
    box-sizing: border-box;
    font-size: 100%;
    line-height: normal;
    margin: 0;
    padding: 0;
    text-align: left;
    vertical-align: initial
}

[data-rk] .iekbcc1 {
    list-style: none
}

[data-rk] .iekbcc2 {
    quotes: none
}

[data-rk] .iekbcc2:after,
[data-rk] .iekbcc2:before {
    content: ""
}

[data-rk] .iekbcc3 {
    border-collapse: collapse;
    border-spacing: 0
}

[data-rk] .iekbcc4 {
    appearance: none
}

[data-rk] .iekbcc5 {
    outline: none
}

[data-rk] .iekbcc5::placeholder {
    opacity: 1
}

[data-rk] .iekbcc6 {
    background-color: initial;
    color: inherit
}

[data-rk] .iekbcc7:disabled {
    opacity: 1
}

[data-rk] .iekbcc7::-ms-expand,
[data-rk] .iekbcc8::-ms-clear {
    display: none
}

[data-rk] .iekbcc8::-webkit-search-cancel-button {
    -webkit-appearance: none
}

[data-rk] .iekbcc9 {
    background: none;
    cursor: pointer;
    text-align: left
}

[data-rk] .iekbcca {
    color: inherit;
    text-decoration: none
}

[data-rk] .ju367v0 {
    align-items: flex-start
}

[data-rk] .ju367v2 {
    align-items: flex-end
}

[data-rk] .ju367v4 {
    align-items: center
}

[data-rk] .ju367v6 {
    display: none
}

[data-rk] .ju367v8 {
    display: block
}

[data-rk] .ju367va {
    display: flex
}

[data-rk] .ju367vc {
    display: inline
}

[data-rk] .ju367ve {
    align-self: flex-start
}

[data-rk] .ju367vf {
    align-self: flex-end
}

[data-rk] .ju367vg {
    align-self: center
}

[data-rk] .ju367vh {
    background-size: cover
}

[data-rk] .ju367vi {
    border-radius: 1px
}

[data-rk] .ju367vj {
    border-radius: 6px
}

[data-rk] .ju367vk {
    border-radius: 10px
}

[data-rk] .ju367vl {
    border-radius: 13px
}

[data-rk] .ju367vm {
    border-radius: var(--rk-radii-actionButton)
}

[data-rk] .ju367vn {
    border-radius: var(--rk-radii-connectButton)
}

[data-rk] .ju367vo {
    border-radius: var(--rk-radii-menuButton)
}

[data-rk] .ju367vp {
    border-radius: var(--rk-radii-modal)
}

[data-rk] .ju367vq {
    border-radius: var(--rk-radii-modalMobile)
}

[data-rk] .ju367vr {
    border-radius: 25%
}

[data-rk] .ju367vs {
    border-radius: 9999px
}

[data-rk] .ju367vt {
    border-style: solid
}

[data-rk] .ju367vu {
    border-width: 0
}

[data-rk] .ju367vv {
    border-width: 1px
}

[data-rk] .ju367vw {
    border-width: 2px
}

[data-rk] .ju367vx {
    border-width: 4px
}

[data-rk] .ju367vy {
    cursor: pointer
}

[data-rk] .ju367vz {
    cursor: none
}

[data-rk] .ju367v10 {
    pointer-events: none
}

[data-rk] .ju367v11 {
    pointer-events: all
}

[data-rk] .ju367v12 {
    min-height: 8px
}

[data-rk] .ju367v13 {
    min-height: 44px
}

[data-rk] .ju367v14 {
    flex-direction: row
}

[data-rk] .ju367v15 {
    flex-direction: column
}

[data-rk] .ju367v16 {
    font-family: var(--rk-fonts-body)
}

[data-rk] .ju367v17 {
    font-size: 12px;
    line-height: 18px
}

[data-rk] .ju367v18 {
    font-size: 13px;
    line-height: 18px
}

[data-rk] .ju367v19 {
    font-size: 14px;
    line-height: 18px
}

[data-rk] .ju367v1a {
    font-size: 16px;
    line-height: 20px
}

[data-rk] .ju367v1b {
    font-size: 18px;
    line-height: 24px
}

[data-rk] .ju367v1c {
    font-size: 20px;
    line-height: 24px
}

[data-rk] .ju367v1d {
    font-size: 23px;
    line-height: 29px
}

[data-rk] .ju367v1e {
    font-weight: 400
}

[data-rk] .ju367v1f {
    font-weight: 500
}

[data-rk] .ju367v1g {
    font-weight: 600
}

[data-rk] .ju367v1h {
    font-weight: 700
}

[data-rk] .ju367v1i {
    font-weight: 800
}

[data-rk] .ju367v1j {
    gap: 0
}

[data-rk] .ju367v1k {
    gap: 1px
}

[data-rk] .ju367v1l {
    gap: 2px
}

[data-rk] .ju367v1m {
    gap: 3px
}

[data-rk] .ju367v1n {
    gap: 4px
}

[data-rk] .ju367v1o {
    gap: 5px
}

[data-rk] .ju367v1p {
    gap: 6px
}

[data-rk] .ju367v1q {
    gap: 8px
}

[data-rk] .ju367v1r {
    gap: 10px
}

[data-rk] .ju367v1s {
    gap: 12px
}

[data-rk] .ju367v1t {
    gap: 14px
}

[data-rk] .ju367v1u {
    gap: 16px
}

[data-rk] .ju367v1v {
    gap: 18px
}

[data-rk] .ju367v1w {
    gap: 20px
}

[data-rk] .ju367v1x {
    gap: 24px
}

[data-rk] .ju367v1y {
    gap: 28px
}

[data-rk] .ju367v1z {
    gap: 32px
}

[data-rk] .ju367v20 {
    gap: 36px
}

[data-rk] .ju367v21 {
    gap: 44px
}

[data-rk] .ju367v22 {
    gap: 64px
}

[data-rk] .ju367v23 {
    gap: -1px
}

[data-rk] .ju367v24 {
    height: 1px
}

[data-rk] .ju367v25 {
    height: 2px
}

[data-rk] .ju367v26 {
    height: 4px
}

[data-rk] .ju367v27 {
    height: 8px
}

[data-rk] .ju367v28 {
    height: 12px
}

[data-rk] .ju367v29 {
    height: 20px
}

[data-rk] .ju367v2a {
    height: 24px
}

[data-rk] .ju367v2b {
    height: 28px
}

[data-rk] .ju367v2c {
    height: 30px
}

[data-rk] .ju367v2d {
    height: 32px
}

[data-rk] .ju367v2e {
    height: 34px
}

[data-rk] .ju367v2f {
    height: 36px
}

[data-rk] .ju367v2g {
    height: 40px
}

[data-rk] .ju367v2h {
    height: 44px
}

[data-rk] .ju367v2i {
    height: 48px
}

[data-rk] .ju367v2j {
    height: 54px
}

[data-rk] .ju367v2k {
    height: 60px
}

[data-rk] .ju367v2l {
    height: 200px
}

[data-rk] .ju367v2m {
    height: 100%
}

[data-rk] .ju367v2n {
    height: max-content
}

[data-rk] .ju367v2o {
    justify-content: flex-start
}

[data-rk] .ju367v2p {
    justify-content: flex-end
}

[data-rk] .ju367v2q {
    justify-content: center
}

[data-rk] .ju367v2r {
    justify-content: space-between
}

[data-rk] .ju367v2s {
    justify-content: space-around
}

[data-rk] .ju367v2t {
    text-align: left
}

[data-rk] .ju367v2u {
    text-align: center
}

[data-rk] .ju367v2v {
    text-align: inherit
}

[data-rk] .ju367v2w {
    margin-bottom: 0
}

[data-rk] .ju367v2x {
    margin-bottom: 1px
}

[data-rk] .ju367v2y {
    margin-bottom: 2px
}

[data-rk] .ju367v2z {
    margin-bottom: 3px
}

[data-rk] .ju367v30 {
    margin-bottom: 4px
}

[data-rk] .ju367v31 {
    margin-bottom: 5px
}

[data-rk] .ju367v32 {
    margin-bottom: 6px
}

[data-rk] .ju367v33 {
    margin-bottom: 8px
}

[data-rk] .ju367v34 {
    margin-bottom: 10px
}

[data-rk] .ju367v35 {
    margin-bottom: 12px
}

[data-rk] .ju367v36 {
    margin-bottom: 14px
}

[data-rk] .ju367v37 {
    margin-bottom: 16px
}

[data-rk] .ju367v38 {
    margin-bottom: 18px
}

[data-rk] .ju367v39 {
    margin-bottom: 20px
}

[data-rk] .ju367v3a {
    margin-bottom: 24px
}

[data-rk] .ju367v3b {
    margin-bottom: 28px
}

[data-rk] .ju367v3c {
    margin-bottom: 32px
}

[data-rk] .ju367v3d {
    margin-bottom: 36px
}

[data-rk] .ju367v3e {
    margin-bottom: 44px
}

[data-rk] .ju367v3f {
    margin-bottom: 64px
}

[data-rk] .ju367v3g {
    margin-bottom: -1px
}

[data-rk] .ju367v3h {
    margin-left: 0
}

[data-rk] .ju367v3i {
    margin-left: 1px
}

[data-rk] .ju367v3j {
    margin-left: 2px
}

[data-rk] .ju367v3k {
    margin-left: 3px
}

[data-rk] .ju367v3l {
    margin-left: 4px
}

[data-rk] .ju367v3m {
    margin-left: 5px
}

[data-rk] .ju367v3n {
    margin-left: 6px
}

[data-rk] .ju367v3o {
    margin-left: 8px
}

[data-rk] .ju367v3p {
    margin-left: 10px
}

[data-rk] .ju367v3q {
    margin-left: 12px
}

[data-rk] .ju367v3r {
    margin-left: 14px
}

[data-rk] .ju367v3s {
    margin-left: 16px
}

[data-rk] .ju367v3t {
    margin-left: 18px
}

[data-rk] .ju367v3u {
    margin-left: 20px
}

[data-rk] .ju367v3v {
    margin-left: 24px
}

[data-rk] .ju367v3w {
    margin-left: 28px
}

[data-rk] .ju367v3x {
    margin-left: 32px
}

[data-rk] .ju367v3y {
    margin-left: 36px
}

[data-rk] .ju367v3z {
    margin-left: 44px
}

[data-rk] .ju367v40 {
    margin-left: 64px
}

[data-rk] .ju367v41 {
    margin-left: -1px
}

[data-rk] .ju367v42 {
    margin-right: 0
}

[data-rk] .ju367v43 {
    margin-right: 1px
}

[data-rk] .ju367v44 {
    margin-right: 2px
}

[data-rk] .ju367v45 {
    margin-right: 3px
}

[data-rk] .ju367v46 {
    margin-right: 4px
}

[data-rk] .ju367v47 {
    margin-right: 5px
}

[data-rk] .ju367v48 {
    margin-right: 6px
}

[data-rk] .ju367v49 {
    margin-right: 8px
}

[data-rk] .ju367v4a {
    margin-right: 10px
}

[data-rk] .ju367v4b {
    margin-right: 12px
}

[data-rk] .ju367v4c {
    margin-right: 14px
}

[data-rk] .ju367v4d {
    margin-right: 16px
}

[data-rk] .ju367v4e {
    margin-right: 18px
}

[data-rk] .ju367v4f {
    margin-right: 20px
}

[data-rk] .ju367v4g {
    margin-right: 24px
}

[data-rk] .ju367v4h {
    margin-right: 28px
}

[data-rk] .ju367v4i {
    margin-right: 32px
}

[data-rk] .ju367v4j {
    margin-right: 36px
}

[data-rk] .ju367v4k {
    margin-right: 44px
}

[data-rk] .ju367v4l {
    margin-right: 64px
}

[data-rk] .ju367v4m {
    margin-right: -1px
}

[data-rk] .ju367v4n {
    margin-top: 0
}

[data-rk] .ju367v4o {
    margin-top: 1px
}

[data-rk] .ju367v4p {
    margin-top: 2px
}

[data-rk] .ju367v4q {
    margin-top: 3px
}

[data-rk] .ju367v4r {
    margin-top: 4px
}

[data-rk] .ju367v4s {
    margin-top: 5px
}

[data-rk] .ju367v4t {
    margin-top: 6px
}

[data-rk] .ju367v4u {
    margin-top: 8px
}

[data-rk] .ju367v4v {
    margin-top: 10px
}

[data-rk] .ju367v4w {
    margin-top: 12px
}

[data-rk] .ju367v4x {
    margin-top: 14px
}

[data-rk] .ju367v4y {
    margin-top: 16px
}

[data-rk] .ju367v4z {
    margin-top: 18px
}

[data-rk] .ju367v50 {
    margin-top: 20px
}

[data-rk] .ju367v51 {
    margin-top: 24px
}

[data-rk] .ju367v52 {
    margin-top: 28px
}

[data-rk] .ju367v53 {
    margin-top: 32px
}

[data-rk] .ju367v54 {
    margin-top: 36px
}

[data-rk] .ju367v55 {
    margin-top: 44px
}

[data-rk] .ju367v56 {
    margin-top: 64px
}

[data-rk] .ju367v57 {
    margin-top: -1px
}

[data-rk] .ju367v58 {
    max-width: 1px
}

[data-rk] .ju367v59 {
    max-width: 2px
}

[data-rk] .ju367v5a {
    max-width: 4px
}

[data-rk] .ju367v5b {
    max-width: 8px
}

[data-rk] .ju367v5c {
    max-width: 12px
}

[data-rk] .ju367v5d {
    max-width: 20px
}

[data-rk] .ju367v5e {
    max-width: 24px
}

[data-rk] .ju367v5f {
    max-width: 28px
}

[data-rk] .ju367v5g {
    max-width: 30px
}

[data-rk] .ju367v5h {
    max-width: 32px
}

[data-rk] .ju367v5i {
    max-width: 34px
}

[data-rk] .ju367v5j {
    max-width: 36px
}

[data-rk] .ju367v5k {
    max-width: 40px
}

[data-rk] .ju367v5l {
    max-width: 44px
}

[data-rk] .ju367v5m {
    max-width: 48px
}

[data-rk] .ju367v5n {
    max-width: 54px
}

[data-rk] .ju367v5o {
    max-width: 60px
}

[data-rk] .ju367v5p {
    max-width: 200px
}

[data-rk] .ju367v5q {
    max-width: 100%
}

[data-rk] .ju367v5r {
    max-width: max-content
}

[data-rk] .ju367v5s {
    min-width: 1px
}

[data-rk] .ju367v5t {
    min-width: 2px
}

[data-rk] .ju367v5u {
    min-width: 4px
}

[data-rk] .ju367v5v {
    min-width: 8px
}

[data-rk] .ju367v5w {
    min-width: 12px
}

[data-rk] .ju367v5x {
    min-width: 20px
}

[data-rk] .ju367v5y {
    min-width: 24px
}

[data-rk] .ju367v5z {
    min-width: 28px
}

[data-rk] .ju367v60 {
    min-width: 30px
}

[data-rk] .ju367v61 {
    min-width: 32px
}

[data-rk] .ju367v62 {
    min-width: 34px
}

[data-rk] .ju367v63 {
    min-width: 36px
}

[data-rk] .ju367v64 {
    min-width: 40px
}

[data-rk] .ju367v65 {
    min-width: 44px
}

[data-rk] .ju367v66 {
    min-width: 48px
}

[data-rk] .ju367v67 {
    min-width: 54px
}

[data-rk] .ju367v68 {
    min-width: 60px
}

[data-rk] .ju367v69 {
    min-width: 200px
}

[data-rk] .ju367v6a {
    min-width: 100%
}

[data-rk] .ju367v6b {
    min-width: max-content
}

[data-rk] .ju367v6c {
    overflow: hidden
}

[data-rk] .ju367v6d {
    padding-bottom: 0
}

[data-rk] .ju367v6e {
    padding-bottom: 1px
}

[data-rk] .ju367v6f {
    padding-bottom: 2px
}

[data-rk] .ju367v6g {
    padding-bottom: 3px
}

[data-rk] .ju367v6h {
    padding-bottom: 4px
}

[data-rk] .ju367v6i {
    padding-bottom: 5px
}

[data-rk] .ju367v6j {
    padding-bottom: 6px
}

[data-rk] .ju367v6k {
    padding-bottom: 8px
}

[data-rk] .ju367v6l {
    padding-bottom: 10px
}

[data-rk] .ju367v6m {
    padding-bottom: 12px
}

[data-rk] .ju367v6n {
    padding-bottom: 14px
}

[data-rk] .ju367v6o {
    padding-bottom: 16px
}

[data-rk] .ju367v6p {
    padding-bottom: 18px
}

[data-rk] .ju367v6q {
    padding-bottom: 20px
}

[data-rk] .ju367v6r {
    padding-bottom: 24px
}

[data-rk] .ju367v6s {
    padding-bottom: 28px
}

[data-rk] .ju367v6t {
    padding-bottom: 32px
}

[data-rk] .ju367v6u {
    padding-bottom: 36px
}

[data-rk] .ju367v6v {
    padding-bottom: 44px
}

[data-rk] .ju367v6w {
    padding-bottom: 64px
}

[data-rk] .ju367v6x {
    padding-bottom: -1px
}

[data-rk] .ju367v6y {
    padding-left: 0
}

[data-rk] .ju367v6z {
    padding-left: 1px
}

[data-rk] .ju367v70 {
    padding-left: 2px
}

[data-rk] .ju367v71 {
    padding-left: 3px
}

[data-rk] .ju367v72 {
    padding-left: 4px
}

[data-rk] .ju367v73 {
    padding-left: 5px
}

[data-rk] .ju367v74 {
    padding-left: 6px
}

[data-rk] .ju367v75 {
    padding-left: 8px
}

[data-rk] .ju367v76 {
    padding-left: 10px
}

[data-rk] .ju367v77 {
    padding-left: 12px
}

[data-rk] .ju367v78 {
    padding-left: 14px
}

[data-rk] .ju367v79 {
    padding-left: 16px
}

[data-rk] .ju367v7a {
    padding-left: 18px
}

[data-rk] .ju367v7b {
    padding-left: 20px
}

[data-rk] .ju367v7c {
    padding-left: 24px
}

[data-rk] .ju367v7d {
    padding-left: 28px
}

[data-rk] .ju367v7e {
    padding-left: 32px
}

[data-rk] .ju367v7f {
    padding-left: 36px
}

[data-rk] .ju367v7g {
    padding-left: 44px
}

[data-rk] .ju367v7h {
    padding-left: 64px
}

[data-rk] .ju367v7i {
    padding-left: -1px
}

[data-rk] .ju367v7j {
    padding-right: 0
}

[data-rk] .ju367v7k {
    padding-right: 1px
}

[data-rk] .ju367v7l {
    padding-right: 2px
}

[data-rk] .ju367v7m {
    padding-right: 3px
}

[data-rk] .ju367v7n {
    padding-right: 4px
}

[data-rk] .ju367v7o {
    padding-right: 5px
}

[data-rk] .ju367v7p {
    padding-right: 6px
}

[data-rk] .ju367v7q {
    padding-right: 8px
}

[data-rk] .ju367v7r {
    padding-right: 10px
}

[data-rk] .ju367v7s {
    padding-right: 12px
}

[data-rk] .ju367v7t {
    padding-right: 14px
}

[data-rk] .ju367v7u {
    padding-right: 16px
}

[data-rk] .ju367v7v {
    padding-right: 18px
}

[data-rk] .ju367v7w {
    padding-right: 20px
}

[data-rk] .ju367v7x {
    padding-right: 24px
}

[data-rk] .ju367v7y {
    padding-right: 28px
}

[data-rk] .ju367v7z {
    padding-right: 32px
}

[data-rk] .ju367v80 {
    padding-right: 36px
}

[data-rk] .ju367v81 {
    padding-right: 44px
}

[data-rk] .ju367v82 {
    padding-right: 64px
}

[data-rk] .ju367v83 {
    padding-right: -1px
}

[data-rk] .ju367v84 {
    padding-top: 0
}

[data-rk] .ju367v85 {
    padding-top: 1px
}

[data-rk] .ju367v86 {
    padding-top: 2px
}

[data-rk] .ju367v87 {
    padding-top: 3px
}

[data-rk] .ju367v88 {
    padding-top: 4px
}

[data-rk] .ju367v89 {
    padding-top: 5px
}

[data-rk] .ju367v8a {
    padding-top: 6px
}

[data-rk] .ju367v8b {
    padding-top: 8px
}

[data-rk] .ju367v8c {
    padding-top: 10px
}

[data-rk] .ju367v8d {
    padding-top: 12px
}

[data-rk] .ju367v8e {
    padding-top: 14px
}

[data-rk] .ju367v8f {
    padding-top: 16px
}

[data-rk] .ju367v8g {
    padding-top: 18px
}

[data-rk] .ju367v8h {
    padding-top: 20px
}

[data-rk] .ju367v8i {
    padding-top: 24px
}

[data-rk] .ju367v8j {
    padding-top: 28px
}

[data-rk] .ju367v8k {
    padding-top: 32px
}

[data-rk] .ju367v8l {
    padding-top: 36px
}

[data-rk] .ju367v8m {
    padding-top: 44px
}

[data-rk] .ju367v8n {
    padding-top: 64px
}

[data-rk] .ju367v8o {
    padding-top: -1px
}

[data-rk] .ju367v8p {
    position: absolute
}

[data-rk] .ju367v8q {
    position: fixed
}

[data-rk] .ju367v8r {
    position: relative
}

[data-rk] .ju367v8s {
    -webkit-user-select: none
}

[data-rk] .ju367v8t {
    right: 0
}

[data-rk] .ju367v8u {
    transition: .125s ease
}

[data-rk] .ju367v8v {
    transition: transform .125s ease
}

[data-rk] .ju367v8w {
    -webkit-user-select: none;
    user-select: none
}

[data-rk] .ju367v8x {
    width: 1px
}

[data-rk] .ju367v8y {
    width: 2px
}

[data-rk] .ju367v8z {
    width: 4px
}

[data-rk] .ju367v90 {
    width: 8px
}

[data-rk] .ju367v91 {
    width: 12px
}

[data-rk] .ju367v92 {
    width: 20px
}

[data-rk] .ju367v93 {
    width: 24px
}

[data-rk] .ju367v94 {
    width: 28px
}

[data-rk] .ju367v95 {
    width: 30px
}

[data-rk] .ju367v96 {
    width: 32px
}

[data-rk] .ju367v97 {
    width: 34px
}

[data-rk] .ju367v98 {
    width: 36px
}

[data-rk] .ju367v99 {
    width: 40px
}

[data-rk] .ju367v9a {
    width: 44px
}

[data-rk] .ju367v9b {
    width: 48px
}

[data-rk] .ju367v9c {
    width: 54px
}

[data-rk] .ju367v9d {
    width: 60px
}

[data-rk] .ju367v9e {
    width: 200px
}

[data-rk] .ju367v9f {
    width: 100%
}

[data-rk] .ju367v9g {
    width: max-content
}

[data-rk] .ju367v9h {
    -webkit-backdrop-filter: var(--rk-blurs-modalOverlay);
    backdrop-filter: var(--rk-blurs-modalOverlay)
}

[data-rk] .ju367v9i,
[data-rk] .ju367v9j:hover,
[data-rk] .ju367v9k:active {
    background: var(--rk-colors-accentColor)
}

[data-rk] .ju367v9l,
[data-rk] .ju367v9m:hover,
[data-rk] .ju367v9n:active {
    background: var(--rk-colors-accentColorForeground)
}

[data-rk] .ju367v9o,
[data-rk] .ju367v9p:hover,
[data-rk] .ju367v9q:active {
    background: var(--rk-colors-actionButtonBorder)
}

[data-rk] .ju367v9r,
[data-rk] .ju367v9s:hover,
[data-rk] .ju367v9t:active {
    background: var(--rk-colors-actionButtonBorderMobile)
}

[data-rk] .ju367v9u,
[data-rk] .ju367v9v:hover,
[data-rk] .ju367v9w:active {
    background: var(--rk-colors-actionButtonSecondaryBackground)
}

[data-rk] .ju367v9x,
[data-rk] .ju367v9y:hover,
[data-rk] .ju367v9z:active {
    background: var(--rk-colors-closeButton)
}

[data-rk] .ju367va0,
[data-rk] .ju367va1:hover,
[data-rk] .ju367va2:active {
    background: var(--rk-colors-closeButtonBackground)
}

[data-rk] .ju367va3,
[data-rk] .ju367va4:hover,
[data-rk] .ju367va5:active {
    background: var(--rk-colors-connectButtonBackground)
}

[data-rk] .ju367va6,
[data-rk] .ju367va7:hover,
[data-rk] .ju367va8:active {
    background: var(--rk-colors-connectButtonBackgroundError)
}

[data-rk] .ju367va9,
[data-rk] .ju367vaa:hover,
[data-rk] .ju367vab:active {
    background: var(--rk-colors-connectButtonInnerBackground)
}

[data-rk] .ju367vac,
[data-rk] .ju367vad:hover,
[data-rk] .ju367vae:active {
    background: var(--rk-colors-connectButtonText)
}

[data-rk] .ju367vaf,
[data-rk] .ju367vag:hover,
[data-rk] .ju367vah:active {
    background: var(--rk-colors-connectButtonTextError)
}

[data-rk] .ju367vai,
[data-rk] .ju367vaj:hover,
[data-rk] .ju367vak:active {
    background: var(--rk-colors-connectionIndicator)
}

[data-rk] .ju367val,
[data-rk] .ju367vam:hover,
[data-rk] .ju367van:active {
    background: var(--rk-colors-downloadBottomCardBackground)
}

[data-rk] .ju367vao,
[data-rk] .ju367vap:hover,
[data-rk] .ju367vaq:active {
    background: var(--rk-colors-downloadTopCardBackground)
}

[data-rk] .ju367var,
[data-rk] .ju367vas:hover,
[data-rk] .ju367vat:active {
    background: var(--rk-colors-error)
}

[data-rk] .ju367vau,
[data-rk] .ju367vav:hover,
[data-rk] .ju367vaw:active {
    background: var(--rk-colors-generalBorder)
}

[data-rk] .ju367vax,
[data-rk] .ju367vay:hover,
[data-rk] .ju367vaz:active {
    background: var(--rk-colors-generalBorderDim)
}

[data-rk] .ju367vb0,
[data-rk] .ju367vb1:hover,
[data-rk] .ju367vb2:active {
    background: var(--rk-colors-menuItemBackground)
}

[data-rk] .ju367vb3,
[data-rk] .ju367vb4:hover,
[data-rk] .ju367vb5:active {
    background: var(--rk-colors-modalBackdrop)
}

[data-rk] .ju367vb6,
[data-rk] .ju367vb7:hover,
[data-rk] .ju367vb8:active {
    background: var(--rk-colors-modalBackground)
}

[data-rk] .ju367vb9,
[data-rk] .ju367vba:hover,
[data-rk] .ju367vbb:active {
    background: var(--rk-colors-modalBorder)
}

[data-rk] .ju367vbc,
[data-rk] .ju367vbd:hover,
[data-rk] .ju367vbe:active {
    background: var(--rk-colors-modalText)
}

[data-rk] .ju367vbf,
[data-rk] .ju367vbg:hover,
[data-rk] .ju367vbh:active {
    background: var(--rk-colors-modalTextDim)
}

[data-rk] .ju367vbi,
[data-rk] .ju367vbj:hover,
[data-rk] .ju367vbk:active {
    background: var(--rk-colors-modalTextSecondary)
}

[data-rk] .ju367vbl,
[data-rk] .ju367vbm:hover,
[data-rk] .ju367vbn:active {
    background: var(--rk-colors-profileAction)
}

[data-rk] .ju367vbo,
[data-rk] .ju367vbp:hover,
[data-rk] .ju367vbq:active {
    background: var(--rk-colors-profileActionHover)
}

[data-rk] .ju367vbr,
[data-rk] .ju367vbs:hover,
[data-rk] .ju367vbt:active {
    background: var(--rk-colors-profileForeground)
}

[data-rk] .ju367vbu,
[data-rk] .ju367vbv:hover,
[data-rk] .ju367vbw:active {
    background: var(--rk-colors-selectedOptionBorder)
}

[data-rk] .ju367vbx,
[data-rk] .ju367vby:hover,
[data-rk] .ju367vbz:active {
    background: var(--rk-colors-standby)
}

[data-rk] .ju367vc0,
[data-rk] .ju367vc1:hover,
[data-rk] .ju367vc2:active {
    border-color: var(--rk-colors-accentColor)
}

[data-rk] .ju367vc3,
[data-rk] .ju367vc4:hover,
[data-rk] .ju367vc5:active {
    border-color: var(--rk-colors-accentColorForeground)
}

[data-rk] .ju367vc6,
[data-rk] .ju367vc7:hover,
[data-rk] .ju367vc8:active {
    border-color: var(--rk-colors-actionButtonBorder)
}

[data-rk] .ju367vc9,
[data-rk] .ju367vca:hover,
[data-rk] .ju367vcb:active {
    border-color: var(--rk-colors-actionButtonBorderMobile)
}

[data-rk] .ju367vcc,
[data-rk] .ju367vcd:hover,
[data-rk] .ju367vce:active {
    border-color: var(--rk-colors-actionButtonSecondaryBackground)
}

[data-rk] .ju367vcf,
[data-rk] .ju367vcg:hover,
[data-rk] .ju367vch:active {
    border-color: var(--rk-colors-closeButton)
}

[data-rk] .ju367vci,
[data-rk] .ju367vcj:hover,
[data-rk] .ju367vck:active {
    border-color: var(--rk-colors-closeButtonBackground)
}

[data-rk] .ju367vcl,
[data-rk] .ju367vcm:hover,
[data-rk] .ju367vcn:active {
    border-color: var(--rk-colors-connectButtonBackground)
}

[data-rk] .ju367vco,
[data-rk] .ju367vcp:hover,
[data-rk] .ju367vcq:active {
    border-color: var(--rk-colors-connectButtonBackgroundError)
}

[data-rk] .ju367vcr,
[data-rk] .ju367vcs:hover,
[data-rk] .ju367vct:active {
    border-color: var(--rk-colors-connectButtonInnerBackground)
}

[data-rk] .ju367vcu,
[data-rk] .ju367vcv:hover,
[data-rk] .ju367vcw:active {
    border-color: var(--rk-colors-connectButtonText)
}

[data-rk] .ju367vcx,
[data-rk] .ju367vcy:hover,
[data-rk] .ju367vcz:active {
    border-color: var(--rk-colors-connectButtonTextError)
}

[data-rk] .ju367vd0,
[data-rk] .ju367vd1:hover,
[data-rk] .ju367vd2:active {
    border-color: var(--rk-colors-connectionIndicator)
}

[data-rk] .ju367vd3,
[data-rk] .ju367vd4:hover,
[data-rk] .ju367vd5:active {
    border-color: var(--rk-colors-downloadBottomCardBackground)
}

[data-rk] .ju367vd6,
[data-rk] .ju367vd7:hover,
[data-rk] .ju367vd8:active {
    border-color: var(--rk-colors-downloadTopCardBackground)
}

[data-rk] .ju367vd9,
[data-rk] .ju367vda:hover,
[data-rk] .ju367vdb:active {
    border-color: var(--rk-colors-error)
}

[data-rk] .ju367vdc,
[data-rk] .ju367vdd:hover,
[data-rk] .ju367vde:active {
    border-color: var(--rk-colors-generalBorder)
}

[data-rk] .ju367vdf,
[data-rk] .ju367vdg:hover,
[data-rk] .ju367vdh:active {
    border-color: var(--rk-colors-generalBorderDim)
}

[data-rk] .ju367vdi,
[data-rk] .ju367vdj:hover,
[data-rk] .ju367vdk:active {
    border-color: var(--rk-colors-menuItemBackground)
}

[data-rk] .ju367vdl,
[data-rk] .ju367vdm:hover,
[data-rk] .ju367vdn:active {
    border-color: var(--rk-colors-modalBackdrop)
}

[data-rk] .ju367vdo,
[data-rk] .ju367vdp:hover,
[data-rk] .ju367vdq:active {
    border-color: var(--rk-colors-modalBackground)
}

[data-rk] .ju367vdr,
[data-rk] .ju367vds:hover,
[data-rk] .ju367vdt:active {
    border-color: var(--rk-colors-modalBorder)
}

[data-rk] .ju367vdu,
[data-rk] .ju367vdv:hover,
[data-rk] .ju367vdw:active {
    border-color: var(--rk-colors-modalText)
}

[data-rk] .ju367vdx,
[data-rk] .ju367vdy:hover,
[data-rk] .ju367vdz:active {
    border-color: var(--rk-colors-modalTextDim)
}

[data-rk] .ju367ve0,
[data-rk] .ju367ve1:hover,
[data-rk] .ju367ve2:active {
    border-color: var(--rk-colors-modalTextSecondary)
}

[data-rk] .ju367ve3,
[data-rk] .ju367ve4:hover,
[data-rk] .ju367ve5:active {
    border-color: var(--rk-colors-profileAction)
}

[data-rk] .ju367ve6,
[data-rk] .ju367ve7:hover,
[data-rk] .ju367ve8:active {
    border-color: var(--rk-colors-profileActionHover)
}

[data-rk] .ju367ve9,
[data-rk] .ju367vea:hover,
[data-rk] .ju367veb:active {
    border-color: var(--rk-colors-profileForeground)
}

[data-rk] .ju367vec,
[data-rk] .ju367ved:hover,
[data-rk] .ju367vee:active {
    border-color: var(--rk-colors-selectedOptionBorder)
}

[data-rk] .ju367vef,
[data-rk] .ju367veg:hover,
[data-rk] .ju367veh:active {
    border-color: var(--rk-colors-standby)
}

[data-rk] .ju367vei,
[data-rk] .ju367vej:hover,
[data-rk] .ju367vek:active {
    box-shadow: var(--rk-shadows-connectButton)
}

[data-rk] .ju367vel,
[data-rk] .ju367vem:hover,
[data-rk] .ju367ven:active {
    box-shadow: var(--rk-shadows-dialog)
}

[data-rk] .ju367veo,
[data-rk] .ju367vep:hover,
[data-rk] .ju367veq:active {
    box-shadow: var(--rk-shadows-profileDetailsAction)
}

[data-rk] .ju367ver,
[data-rk] .ju367ves:hover,
[data-rk] .ju367vet:active {
    box-shadow: var(--rk-shadows-selectedOption)
}

[data-rk] .ju367veu,
[data-rk] .ju367vev:hover,
[data-rk] .ju367vew:active {
    box-shadow: var(--rk-shadows-selectedWallet)
}

[data-rk] .ju367vex,
[data-rk] .ju367vey:hover,
[data-rk] .ju367vez:active {
    box-shadow: var(--rk-shadows-walletLogo)
}

[data-rk] .ju367vf0,
[data-rk] .ju367vf1:hover,
[data-rk] .ju367vf2:active {
    color: var(--rk-colors-accentColor)
}

[data-rk] .ju367vf3,
[data-rk] .ju367vf4:hover,
[data-rk] .ju367vf5:active {
    color: var(--rk-colors-accentColorForeground)
}

[data-rk] .ju367vf6,
[data-rk] .ju367vf7:hover,
[data-rk] .ju367vf8:active {
    color: var(--rk-colors-actionButtonBorder)
}

[data-rk] .ju367vf9,
[data-rk] .ju367vfa:hover,
[data-rk] .ju367vfb:active {
    color: var(--rk-colors-actionButtonBorderMobile)
}

[data-rk] .ju367vfc,
[data-rk] .ju367vfd:hover,
[data-rk] .ju367vfe:active {
    color: var(--rk-colors-actionButtonSecondaryBackground)
}

[data-rk] .ju367vff,
[data-rk] .ju367vfg:hover,
[data-rk] .ju367vfh:active {
    color: var(--rk-colors-closeButton)
}

[data-rk] .ju367vfi,
[data-rk] .ju367vfj:hover,
[data-rk] .ju367vfk:active {
    color: var(--rk-colors-closeButtonBackground)
}

[data-rk] .ju367vfl,
[data-rk] .ju367vfm:hover,
[data-rk] .ju367vfn:active {
    color: var(--rk-colors-connectButtonBackground)
}

[data-rk] .ju367vfo,
[data-rk] .ju367vfp:hover,
[data-rk] .ju367vfq:active {
    color: var(--rk-colors-connectButtonBackgroundError)
}

[data-rk] .ju367vfr,
[data-rk] .ju367vfs:hover,
[data-rk] .ju367vft:active {
    color: var(--rk-colors-connectButtonInnerBackground)
}

[data-rk] .ju367vfu,
[data-rk] .ju367vfv:hover,
[data-rk] .ju367vfw:active {
    color: var(--rk-colors-connectButtonText)
}

[data-rk] .ju367vfx,
[data-rk] .ju367vfy:hover,
[data-rk] .ju367vfz:active {
    color: var(--rk-colors-connectButtonTextError)
}

[data-rk] .ju367vg0,
[data-rk] .ju367vg1:hover,
[data-rk] .ju367vg2:active {
    color: var(--rk-colors-connectionIndicator)
}

[data-rk] .ju367vg3,
[data-rk] .ju367vg4:hover,
[data-rk] .ju367vg5:active {
    color: var(--rk-colors-downloadBottomCardBackground)
}

[data-rk] .ju367vg6,
[data-rk] .ju367vg7:hover,
[data-rk] .ju367vg8:active {
    color: var(--rk-colors-downloadTopCardBackground)
}

[data-rk] .ju367vg9,
[data-rk] .ju367vga:hover,
[data-rk] .ju367vgb:active {
    color: var(--rk-colors-error)
}

[data-rk] .ju367vgc,
[data-rk] .ju367vgd:hover,
[data-rk] .ju367vge:active {
    color: var(--rk-colors-generalBorder)
}

[data-rk] .ju367vgf,
[data-rk] .ju367vgg:hover,
[data-rk] .ju367vgh:active {
    color: var(--rk-colors-generalBorderDim)
}

[data-rk] .ju367vgi,
[data-rk] .ju367vgj:hover,
[data-rk] .ju367vgk:active {
    color: var(--rk-colors-menuItemBackground)
}

[data-rk] .ju367vgl,
[data-rk] .ju367vgm:hover,
[data-rk] .ju367vgn:active {
    color: var(--rk-colors-modalBackdrop)
}

[data-rk] .ju367vgo,
[data-rk] .ju367vgp:hover,
[data-rk] .ju367vgq:active {
    color: var(--rk-colors-modalBackground)
}

[data-rk] .ju367vgr,
[data-rk] .ju367vgs:hover,
[data-rk] .ju367vgt:active {
    color: var(--rk-colors-modalBorder)
}

[data-rk] .ju367vgu,
[data-rk] .ju367vgv:hover,
[data-rk] .ju367vgw:active {
    color: var(--rk-colors-modalText)
}

[data-rk] .ju367vgx,
[data-rk] .ju367vgy:hover,
[data-rk] .ju367vgz:active {
    color: var(--rk-colors-modalTextDim)
}

[data-rk] .ju367vh0,
[data-rk] .ju367vh1:hover,
[data-rk] .ju367vh2:active {
    color: var(--rk-colors-modalTextSecondary)
}

[data-rk] .ju367vh3,
[data-rk] .ju367vh4:hover,
[data-rk] .ju367vh5:active {
    color: var(--rk-colors-profileAction)
}

[data-rk] .ju367vh6,
[data-rk] .ju367vh7:hover,
[data-rk] .ju367vh8:active {
    color: var(--rk-colors-profileActionHover)
}

[data-rk] .ju367vh9,
[data-rk] .ju367vha:hover,
[data-rk] .ju367vhb:active {
    color: var(--rk-colors-profileForeground)
}

[data-rk] .ju367vhc,
[data-rk] .ju367vhd:hover,
[data-rk] .ju367vhe:active {
    color: var(--rk-colors-selectedOptionBorder)
}

[data-rk] .ju367vhf,
[data-rk] .ju367vhg:hover,
[data-rk] .ju367vhh:active {
    color: var(--rk-colors-standby)
}

@media screen and (min-width:768px) {
    [data-rk] .ju367v1 {
        align-items: flex-start
    }

    [data-rk] .ju367v3 {
        align-items: flex-end
    }

    [data-rk] .ju367v5 {
        align-items: center
    }

    [data-rk] .ju367v7 {
        display: none
    }

    [data-rk] .ju367v9 {
        display: block
    }

    [data-rk] .ju367vb {
        display: flex
    }

    [data-rk] .ju367vd {
        display: inline
    }
}

[data-rk] ._12cbo8i3,
[data-rk] ._12cbo8i3:after {
    --_12cbo8i0: 1;
    --_12cbo8i1: 1
}

[data-rk] ._12cbo8i3:hover {
    transform: scale(var(--_12cbo8i0))
}

[data-rk] ._12cbo8i3:active {
    transform: scale(var(--_12cbo8i1))
}

[data-rk] ._12cbo8i3:active:after {
    bottom: -1px;
    content: "";
    display: block;
    left: -1px;
    position: absolute;
    right: -1px;
    top: -1px;
    transform: scale(calc((1/var(--_12cbo8i1))*var(--_12cbo8i0)))
}

[data-rk] ._12cbo8i4,
[data-rk] ._12cbo8i4:after {
    --_12cbo8i0: 1.025
}

[data-rk] ._12cbo8i5,
[data-rk] ._12cbo8i5:after {
    --_12cbo8i0: 1.1
}

[data-rk] ._12cbo8i6,
[data-rk] ._12cbo8i6:after {
    --_12cbo8i1: 0.95
}

[data-rk] ._12cbo8i7,
[data-rk] ._12cbo8i7:after {
    --_12cbo8i1: 0.9
}

@keyframes _1luule41 {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn)
    }
}

[data-rk] ._1luule42 {
    animation: _1luule41 3s linear infinite
}

[data-rk] ._1luule43 {
    background: conic-gradient(from 180deg at 50% 50%, #4892fe00 0deg, currentColor 282.04deg, #4892fe00 319.86deg, #4892fe00 1turn);
    height: 21px;
    width: 21px
}

@keyframes _9pm4ki0 {
    0% {
        transform: translateY(100%)
    }

    to {
        transform: translateY(0)
    }
}

@keyframes _9pm4ki1 {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

[data-rk] ._9pm4ki3 {
    animation: _9pm4ki1 .15s ease;
    bottom: -200px;
    left: -200px;
    padding: 200px;
    right: -200px;
    top: -200px;
    transform: translateZ(0);
    z-index: 2147483646
}

[data-rk] ._9pm4ki5 {
    animation: _9pm4ki0 .35s cubic-bezier(.15, 1.15, .6, 1), _9pm4ki1 .15s ease;
    max-width: 100vw
}

[data-rk] ._1ckjpok1 {
    box-sizing: initial;
    max-width: 100vw;
    width: 360px
}

[data-rk] ._1ckjpok2 {
    width: 100vw
}

[data-rk] ._1ckjpok3 {
    min-width: 720px;
    width: 720px
}

[data-rk] ._1ckjpok4 {
    min-width: 368px;
    width: 368px
}

[data-rk] ._1ckjpok6 {
    border-width: 0;
    box-sizing: border-box;
    width: 100vw
}

@media screen and (min-width:768px) {
    [data-rk] ._1ckjpok1 {
        width: 360px
    }

    [data-rk] ._1ckjpok2 {
        width: 480px
    }

    [data-rk] ._1ckjpok4 {
        min-width: 368px;
        width: 368px
    }
}

@media screen and (max-width:767px) {
    [data-rk] ._1ckjpok7 {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        margin-top: -200px;
        padding-bottom: 200px;
        top: 200px
    }
}

[data-rk] .v9horb0:hover {
    background: unset
}

[data-rk] ._18dqw9x0,
[data-rk] ._18dqw9x1 {
    max-height: 456px;
    overflow-x: hidden;
    overflow-y: auto
}

[data-rk] ._18dqw9x1 {
    scrollbar-width: none
}

[data-rk] ._18dqw9x1::-webkit-scrollbar {
    display: none
}

[data-rk] .g5kl0l0 {
    border-color: #0000
}

[data-rk] ._1vwt0cg0 {
    background: #fff
}

[data-rk] ._1vwt0cg2 {
    max-height: 454px;
    overflow-y: auto
}

[data-rk] ._1vwt0cg3 {
    min-width: 287px
}

[data-rk] ._1vwt0cg4 {
    min-width: 100%
}

@keyframes _1am14411 {
    0% {
        stroke-dashoffset: 0
    }

    to {
        stroke-dashoffset: -283
    }
}

[data-rk] ._1am14410 {
    overflow: auto;
    scrollbar-width: none;
    transform: translateZ(0)
}

[data-rk] ._1am14410::-webkit-scrollbar {
    display: none
}

[data-rk] ._1am14412 {
    stroke-dasharray: 98 196;
    fill: none;
    stroke-linecap: round;
    stroke-width: 4;
    animation: _1am14411 1s linear infinite
}

[data-rk] ._1am14413 {
    position: absolute
}

[data-rk] ._1y2lnfi0 {
    border: 1px solid #10151f0f
}

[data-rk] ._1y2lnfi1 {
    max-width: -moz-fit-content;
    max-width: fit-content
}

.landing_main__U9pdj {
    overflow: hidden;
    position: relative
}

.banner_section__hLXSh {
    background-color: #14284e;
    border-top: 1px solid #fff;
    padding-bottom: 237px;
    position: relative
}

@media only screen and (max-width:1179px) {
    .banner_section__hLXSh {
        border-top: 0;
        padding-bottom: 0
    }
}

.banner_background_box__OYDbA {
    display: flex;
    height: 100%;
    justify-content: right;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0
}

.banner_background_img__ESBfG {
    height: 100%;
    object-fit: cover;
    overflow: visible
}

@media only screen and (max-width:1179px) {
    .banner_background_img__ESBfG {
        height: 712px
    }
}

@media only screen and (max-width:1023px) {
    .banner_background_img__ESBfG {
        height: 600px
    }
}

@media only screen and (max-width:767px) {
    .banner_background_img__ESBfG {
        height: 500px
    }
}

@media only screen and (max-width:639px) {
    .banner_background_img__ESBfG {
        height: 400px
    }
}

@media only screen and (max-width:474px) {
    .banner_background_img__ESBfG {
        height: 300px
    }
}

.banner_gradient__0jd9M {
    background: linear-gradient(90deg, #14284e, #14284e00);
    height: 100%;
    position: absolute;
    right: 700.2px;
    top: 0;
    width: 489px;
    z-index: 1
}

.banner_container__Gn16a {
    display: flex;
    flex-direction: column
}

@media only screen and (max-width:1179px) {
    .banner_container__Gn16a {
        padding: 732px 52px 102px 56px
    }
}

@media only screen and (max-width:1023px) {
    .banner_container__Gn16a {
        padding: 616px 52px 102px 56px
    }
}

@media only screen and (max-width:767px) {
    .banner_container__Gn16a {
        padding: 508px 26px 51px 28px
    }
}

@media only screen and (max-width:639px) {
    .banner_container__Gn16a {
        padding: 404px 26px 51px 28px
    }
}

@media only screen and (max-width:474px) {
    .banner_container__Gn16a {
        padding: 302px 26px 51px 28px
    }
}

.banner_title_box__wYZ2p {
    color: #fff;
    font-family: poppins-bold, poppins, sans-serif;
    font-size: 40px;
    padding: 138px 0 0;
    width: 401px
}

@media only screen and (max-width:1179px) {
    .banner_title_box__wYZ2p {
        font-size: 64px;
        padding: 0;
        width: 100%
    }
}

@media only screen and (max-width:767px) {
    .banner_title_box__wYZ2p {
        font-size: 30px
    }
}

.banner_contents_box__cnW8J {
    color: #fff;
    font-family: poppins-medium, sans-serif;
    font-size: 20px;
    padding: 25px 0 0;
    width: 637px
}

@media only screen and (max-width:1179px) {
    .banner_contents_box__cnW8J {
        font-size: 24px;
        width: 100%
    }
}

@media only screen and (max-width:767px) {
    .banner_contents_box__cnW8J {
        font-size: 12px
    }
}

.banner_buttons_box__CTZZc {
    padding: 70px 0 123px
}

@media only screen and (max-width:1179px) {
    .banner_buttons_box__CTZZc {
        align-items: center;
        display: flex;
        flex-direction: column;
        padding: 152px 0 0
    }
}

@media only screen and (max-width:767px) {
    .banner_buttons_box__CTZZc {
        padding: 76px 0 0
    }
}

.banner_play_button__uaNhb {
    background: #fff;
    border-radius: 90px;
    color: #000;
    font-family: Bungee, sans-serif;
    font-size: 24px;
    line-height: 16px;
    opacity: var(--sds-size-stroke-border);
    padding: 14px 25px;
    transition: all .1s ease-in-out
}

.banner_play_button__uaNhb:hover {
    color: #000;
    scale: 1.1
}

@media only screen and (max-width:1179px) {
    .banner_play_button__uaNhb {
        align-items: center;
        display: flex;
        font-size: 40px;
        justify-content: center;
        min-height: 88px;
        min-width: 410px
    }

    .banner_play_button__uaNhb:hover {
        scale: 1
    }
}

@media only screen and (max-width:767px) {
    .banner_play_button__uaNhb {
        font-size: 20px;
        min-height: 44px;
        min-width: 205px
    }
}

.powered_section__xXDtH {
    position: relative
}

.powered_container__ue3st {
    display: flex;
    flex-direction: column;
    justify-content: center
}

.powered_title_box__qdZCv {
    color: #000;
    font-family: Bungee, cursive;
    font-size: 36px;
    padding-top: 45px;
    text-align: center
}

@media only screen and (max-width:1179px) {
    .powered_title_box__qdZCv {
        font-size: 64px;
        padding-top: 90px
    }
}

@media only screen and (max-width:767px) {
    .powered_title_box__qdZCv {
        font-size: 32px;
        padding-top: 45px
    }
}

.powered_subtitle_box__AbwTD {
    color: #000;
    font-family: inter-light, sans-serif;
    font-size: 20px;
    margin-top: 15px;
    text-align: center
}

@media only screen and (max-width:1179px) {
    .powered_subtitle_box__AbwTD {
        font-size: 24px;
        margin-top: 30px
    }
}

@media only screen and (max-width:767px) {
    .powered_subtitle_box__AbwTD {
        font-size: 12px;
        margin-top: 15px
    }
}

.powered_cards_box__rrt9c {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 48px 0 58.5px
}

@media only screen and (max-width:1179px) {
    .powered_cards_box__rrt9c {
        flex-direction: column;
        margin: 130px 54px 146px
    }
}

@media only screen and (max-width:767px) {
    .powered_cards_box__rrt9c {
        margin: 65px 27px 73px
    }
}

.powered_card__J2E1p {
    flex: 0 0 528px;
    height: 366.5px
}

.powered_card__J2E1p:not(:last-child) {
    margin-right: 64px
}

@media only screen and (max-width:1179px) {
    .powered_card__J2E1p {
        flex: 0 0 100%;
        margin-right: 0
    }

    .powered_card__J2E1p:not(:last-child) {
        margin-bottom: 128px;
        margin-right: 0
    }
}

@media only screen and (max-width:767px) {
    .powered_card__J2E1p:not(:last-child) {
        margin-bottom: 64px
    }
}

.card_card__ML5vV {
    align-items: center;
    display: flex;
    flex-direction: column;
    transition: all .1s ease-in-out
}

.card_img_box__i09ev {
    border-radius: 15px;
    overflow: hidden;
    transition: all .1s ease-in-out
}

.card_img_box__i09ev:hover {
    scale: 1.1
}

@media only screen and (max-width:1179px) {
    .card_img_box__i09ev:hover {
        scale: 1
    }
}

.card_img__8YsyN {
    aspect-ratio: 528/295;
    object-fit: cover;
    overflow: visible
}

.card_title_box__tmERi {
    color: #14284e;
    font-family: Montserrat;
    font-size: 15px;
    margin-top: 18px
}

@media only screen and (max-width:1179px) {
    .card_title_box__tmERi {
        font-size: 24px;
        margin-top: 36px
    }
}

@media only screen and (max-width:767px) {
    .card_title_box__tmERi {
        font-size: 12px;
        margin-top: 18px
    }
}

.card_name_box__3F09K {
    color: #14284e;
    font-family: Bungee, sans-serif;
    font-size: 24px;
    margin-top: 6px
}

@media only screen and (max-width:1179px) {
    .card_name_box__3F09K {
        font-size: 48px;
        margin-top: 12px
    }
}

@media only screen and (max-width:767px) {
    .card_name_box__3F09K {
        font-size: 24px;
        margin-top: 6px
    }
}

.ecosystem_section__S79Uq {
    overflow: hidden;
    position: relative
}

.ecosystem_container__vi\+Ue {
    display: flex;
    flex-direction: column;
    justify-content: center
}

.ecosystem_title_box__7mSal {
    color: #000;
    font-family: Bungee, cursive;
    font-size: 36px;
    padding-top: 45px;
    text-align: center
}

@media only screen and (max-width:1179px) {
    .ecosystem_title_box__7mSal {
        font-size: 64px;
        padding-top: 90px
    }
}

@media only screen and (max-width:767px) {
    .ecosystem_title_box__7mSal {
        font-size: 32px;
        padding-top: 45px
    }
}

.ecosystem_subtitle_box__8q-dX {
    color: #000;
    font-family: inter-light, sans-serif;
    font-size: 20px;
    margin-top: 15px;
    text-align: center
}

@media only screen and (max-width:1179px) {
    .ecosystem_subtitle_box__8q-dX {
        font-size: 24px;
        margin-top: 30px
    }
}

@media only screen and (max-width:767px) {
    .ecosystem_subtitle_box__8q-dX {
        font-size: 12px;
        margin-top: 15px
    }
}

.ecosystem_cards_box__BsPjP {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 48px 0 60px
}

@media only screen and (max-width:1179px) {
    .ecosystem_cards_box__BsPjP {
        flex-direction: column;
        margin: 100px 46px 84px
    }
}

@media only screen and (max-width:767px) {
    .ecosystem_cards_box__BsPjP {
        margin: 50px 23px 42px
    }
}

.ecosystem_card__eCi44:first-child,
.ecosystem_card__eCi44:nth-child(2),
.ecosystem_card__eCi44:nth-child(3) {
    flex: 0 1 360px;
    margin-bottom: 30px
}

.ecosystem_card__eCi44:first-child,
.ecosystem_card__eCi44:nth-child(2) {
    flex: 0 1 360px;
    margin-right: 20px
}

.ecosystem_card__eCi44:nth-child(4) {
    flex: 0 1 624px;
    margin-right: 20px
}

.ecosystem_card__eCi44:nth-child(5) {
    flex: 0 1 476px
}

@media only screen and (max-width:1179px) {

    .ecosystem_card__eCi44,
    .ecosystem_card__eCi44:nth-child(n) {
        flex: 0 0 100%;
        margin-right: 0
    }

    .ecosystem_card__eCi44:not(:last-child) {
        margin-bottom: 54px
    }
}

@media only screen and (max-width:767px) {
    .ecosystem_card__eCi44:not(:last-child) {
        margin-bottom: 27px
    }
}

.ecosystem_gram_icon__P6AAZ {
    height: 26px;
    margin: 0 8px;
    width: 26px
}

@media only screen and (max-width:1179px) {
    .ecosystem_gram_icon__P6AAZ {
        height: 52px;
        margin: 0 16px;
        width: 52px
    }
}

@media only screen and (max-width:767px) {
    .ecosystem_gram_icon__P6AAZ {
        height: 26px;
        margin: 0 8px;
        width: 26px
    }
}

.card_card__yf703 {
    background-color: #e8e9ff;
    border-radius: 15px;
    box-shadow: 4px 4px 4px 0 #00000040;
    display: flex;
    flex-direction: column;
    padding: 34px 29px 27px 28px;
    transform: translateX(100vw);
    transition: all .8s ease-out
}

.card_card__yf703.card_reverse_color__Xrmme {
    background-color: #14284e
}

.card_card__yf703.card_reverse_color__Xrmme .card_contents_box__Voux4,
.card_card__yf703.card_reverse_color__Xrmme .card_title_box__T0g5N {
    color: #fff
}

@media only screen and (max-width:1179px) {
    .card_card__yf703 {
        padding: 64px 66px 58px 56px
    }
}

@media only screen and (max-width:767px) {
    .card_card__yf703 {
        padding: 32px 33px 29px 28px
    }
}

.card_title_box__T0g5N {
    color: #14284e;
    font-family: poppins-medium, sans-serif;
    font-size: 24px;
    margin-bottom: 15px
}

@media only screen and (max-width:1179px) {
    .card_title_box__T0g5N {
        font-size: 48px;
        margin-bottom: 30px
    }
}

@media only screen and (max-width:767px) {
    .card_title_box__T0g5N {
        font-size: 24px;
        margin-bottom: 15px
    }
}

.card_contents_box__Voux4 {
    color: #14284e;
    flex-grow: 1;
    font-family: Montserrat;
    font-size: 14px;
    margin-bottom: 42px
}

@media only screen and (max-width:1179px) {
    .card_contents_box__Voux4 {
        font-size: 28px;
        margin-bottom: 0
    }
}

@media only screen and (max-width:767px) {
    .card_contents_box__Voux4 {
        font-size: 14px
    }
}

.card_social_box__3nGTN {
    align-items: center;
    display: flex;
    justify-content: flex-end
}

@media only screen and (max-width:1179px) {
    .card_social_box__3nGTN {
        margin-top: 54px
    }
}

@media only screen and (max-width:767px) {
    .card_social_box__3nGTN {
        margin-top: 27px
    }
}

.card_social__R7sJk {
    height: 45px;
    transition: all .1s ease-in-out;
    width: 45px
}

.card_social__R7sJk:hover {
    scale: 1.1
}

.card_social__R7sJk:not(:last-child) {
    margin-right: 10px
}

@media only screen and (max-width:1179px) {
    .card_social__R7sJk {
        height: 90px;
        width: 90px
    }

    .card_social__R7sJk:hover {
        scale: 1
    }

    .card_social__R7sJk:not(:last-child) {
        margin-right: 20px
    }
}

@media only screen and (max-width:767px) {
    .card_social__R7sJk {
        height: 45px;
        width: 45px
    }

    .card_social__R7sJk:not(:last-child) {
        margin-right: 10px
    }
}

.card_button_box__qqWfP {
    align-items: center;
    display: flex;
    justify-content: flex-end
}

@media only screen and (max-width:1179px) {
    .card_button_box__qqWfP {
        justify-content: center;
        margin-top: 54px
    }
}

@media only screen and (max-width:767px) {
    .card_button_box__qqWfP {
        margin-top: 27px
    }
}

.card_button__yO50T {
    align-items: center;
    background-color: #fff;
    border-radius: 90px;
    color: #000;
    display: flex;
    font-family: poppins-medium, sans-serif;
    font-size: 15px;
    justify-content: center;
    line-height: 16px;
    padding: 7px 15px;
    transition: all .1s ease-in-out
}

.card_button__yO50T:hover {
    color: #000;
    scale: 1.1
}

.card_button__yO50T.card_disabled__2aD-X {
    background-color: #afafaf;
    color: #fff;
    cursor: not-allowed
}

.card_button__yO50T.card_disabled__2aD-X:hover {
    scale: 1
}

@media only screen and (max-width:1179px) {
    .card_button__yO50T {
        font-size: 30px;
        line-height: 32px;
        padding: 14px 30px
    }

    .card_button__yO50T:hover {
        scale: 1
    }
}

@media only screen and (max-width:767px) {
    .card_button__yO50T {
        font-size: 15px;
        line-height: 16px;
        padding: 7px 15px
    }
}

.nfts_section__q5jbE {
    background-color: #14284e;
    overflow: hidden;
    position: relative
}

.nfts_container__DMqKJ {
    display: flex;
    flex-direction: column;
    justify-content: center
}

.nfts_title_box__3EEtb {
    color: #fff;
    font-family: Bungee, cursive;
    font-size: 36px;
    padding-top: 45px;
    text-align: center
}

@media only screen and (max-width:1179px) {
    .nfts_title_box__3EEtb {
        font-size: 64px;
        padding-top: 90px
    }
}

@media only screen and (max-width:767px) {
    .nfts_title_box__3EEtb {
        font-size: 32px;
        padding-top: 45px
    }
}

.nfts_subtitle_box__eqH0S {
    color: #fff;
    font-family: inter-light, sans-serif;
    font-size: 20px;
    margin-top: 15px;
    text-align: center
}

@media only screen and (max-width:1179px) {
    .nfts_subtitle_box__eqH0S {
        font-size: 24px;
        margin-top: 30px
    }
}

@media only screen and (max-width:767px) {
    .nfts_subtitle_box__eqH0S {
        font-size: 12px;
        margin-top: 15px
    }
}

.nfts_nft_box__c222E {
    height: 373px;
    margin: 51px 0 38px;
    padding-top: 46px
}

@media only screen and (max-width:1179px) {
    .nfts_nft_box__c222E {
        height: 746px;
        margin: 100px 0 104px;
        padding-top: 92px
    }
}

@media only screen and (max-width:767px) {
    .nfts_nft_box__c222E {
        height: 373px;
        margin: 50px 0 52px;
        padding-top: 46px
    }
}

.nfts_nft_card__9vFyO {
    background: #fff;
    border: 2px #e9e9e9;
    border-radius: 15px;
    box-shadow: 0 4px 4px 0 #00000040;
    height: 282px;
    padding: 19px 22px 70px;
    transition: all .1s ease-in-out;
    width: 236px !important
}

@media only screen and (max-width:1179px) {
    .nfts_nft_card__9vFyO {
        height: 564px;
        padding: 38px 44px 140px;
        width: 472px !important
    }
}

@media only screen and (max-width:767px) {
    .nfts_nft_card__9vFyO {
        height: 282px;
        padding: 19px 22px 70px;
        width: 236px !important
    }
}

.nfts_nft__elgdQ {
    border-radius: 15px;
    height: 100%;
    width: 100%
}

.nfts_contents_box__8RVEd {
    color: #fff;
    font-family: Montserrat;
    font-size: 20px;
    margin-bottom: 38px;
    text-align: center
}

@media only screen and (max-width:1179px) {
    .nfts_contents_box__8RVEd {
        font-size: 24px;
        margin-bottom: 122px;
        padding: 0 106px
    }
}

@media only screen and (max-width:767px) {
    .nfts_contents_box__8RVEd {
        font-size: 12px;
        margin-bottom: 61px;
        padding: 0 53px
    }
}

.nfts_button_box__TYuSO {
    display: flex;
    flex-direction: row;
    justify-content: center
}

@media only screen and (max-width:1179px) {
    .nfts_button_box__TYuSO {
        align-items: center;
        display: flex;
        flex-direction: column
    }
}

.nfts_button__KSXcD {
    align-items: center;
    background-color: #fff;
    border-radius: 90px;
    color: #14284e;
    display: flex;
    font-family: Bungee, sans-serif;
    font-size: 24px;
    justify-content: center;
    line-height: 16px;
    margin-bottom: 45px;
    min-height: 44px;
    min-width: 188px;
    transition: all .1s ease-in-out
}

.nfts_button__KSXcD:not(:last-child) {
    margin-right: 56px
}

.nfts_button__KSXcD:hover {
    color: #14284e;
    scale: 1.1
}

.nfts_button__KSXcD img {
    height: 27.48px;
    width: 158px
}

@media only screen and (max-width:1179px) {
    .nfts_button__KSXcD {
        font-size: 40px;
        margin-bottom: 110px;
        margin-right: 0;
        min-height: 88px;
        min-width: 416px
    }

    .nfts_button__KSXcD:not(:last-child) {
        margin-bottom: 30px;
        margin-right: 0
    }

    .nfts_button__KSXcD:hover {
        scale: 1
    }

    .nfts_button__KSXcD img {
        height: 55.36px;
        width: 316px
    }
}

@media only screen and (max-width:767px) {
    .nfts_button__KSXcD {
        font-size: 20px;
        margin-bottom: 55px;
        min-height: 44px;
        min-width: 208px
    }

    .nfts_button__KSXcD:not(:last-child) {
        margin-bottom: 15px
    }

    .nfts_button__KSXcD img {
        height: 27.48px;
        width: 158px
    }
}

.grampus_section__Hk9bE {
    position: relative
}

.grampus_container__mvXmN {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 21px 0 34px
}

@media only screen and (max-width:1179px) {
    .grampus_container__mvXmN {
        flex-direction: column;
        padding: 94px 54px 110px
    }
}

@media only screen and (max-width:767px) {
    .grampus_container__mvXmN {
        padding: 47px 27px 55px
    }
}

.grampus_left_box__T3ada {
    display: flex;
    flex: 0 1 540px;
    flex-direction: row
}

@media only screen and (max-width:1179px) {
    .grampus_left_box__T3ada {
        flex: 0 1 100%
    }
}

.grampus_img_col__lbpa8 {
    display: flex;
    flex-direction: column
}

.grampus_img_col__lbpa8:first-child {
    margin-top: 0
}

.grampus_img_col__lbpa8:nth-child(2) {
    margin-top: 40px
}

.grampus_img_col__lbpa8:nth-child(3) {
    margin-top: 80px
}

.grampus_img_col__lbpa8:nth-child(4) {
    margin-top: 120px
}

.grampus_img_col__lbpa8:not(:last-child) {
    margin-right: 20px
}

@media only screen and (max-width:1179px) {
    .grampus_img_col__lbpa8 {
        flex: 1 0
    }

    .grampus_img_col__lbpa8:first-child {
        margin-top: 0
    }

    .grampus_img_col__lbpa8:nth-child(2) {
        margin-top: 80px
    }

    .grampus_img_col__lbpa8:nth-child(3) {
        margin-top: 160px
    }

    .grampus_img_col__lbpa8:nth-child(4) {
        margin-top: 240px
    }
}

@media only screen and (max-width:767px) {
    .grampus_img_col__lbpa8:not(:last-child) {
        margin-right: 13px
    }

    .grampus_img_col__lbpa8:first-child {
        margin-top: 0
    }

    .grampus_img_col__lbpa8:nth-child(2) {
        margin-top: 40px
    }

    .grampus_img_col__lbpa8:nth-child(3) {
        margin-top: 80px
    }

    .grampus_img_col__lbpa8:nth-child(4) {
        margin-top: 120px
    }
}

.grampus_img__MK9ld {
    border-radius: 8px;
    height: 120px;
    opacity: 0;
    transform: translateY(30px);
    transition: all .2s ease-in-out;
    width: 120px
}

.grampus_img__MK9ld:not(:last-child) {
    margin-bottom: 15px
}

.grampus_img__MK9ld:hover {
    scale: 1.15
}

@media only screen and (max-width:1179px) {
    .grampus_img__MK9ld {
        aspect-ratio: 1/1;
        height: -moz-fit-content;
        height: fit-content;
        width: 100%
    }

    .grampus_img__MK9ld:hover {
        scale: 1
    }
}

@media only screen and (max-width:767px) {
    .grampus_img__MK9ld {
        margin-bottom: 5px
    }
}

.grampus_right_box__4lbS- {
    display: flex;
    flex: 0 1 513px;
    flex-direction: column;
    padding: 63px 0 0 67px
}

@media only screen and (max-width:1179px) {
    .grampus_right_box__4lbS- {
        align-items: center;
        flex: 0 1 100%;
        padding: 100px 66px 0 84px
    }
}

@media only screen and (max-width:767px) {
    .grampus_right_box__4lbS- {
        padding: 50px 33px 0 42px
    }
}

.grampus_logo__XgTWk {
    height: 109px;
    object-fit: cover;
    width: 334px
}

@media only screen and (max-width:1179px) {
    .grampus_logo__XgTWk {
        height: 154px;
        width: 470px
    }
}

@media only screen and (max-width:767px) {
    .grampus_logo__XgTWk {
        height: 77px;
        width: 235px
    }
}

.grampus_contents_box__qu6MV {
    color: #000;
    font-family: Montserrat;
    font-size: 20px;
    line-height: 120%;
    margin-top: 35px
}

@media only screen and (max-width:1179px) {
    .grampus_contents_box__qu6MV {
        font-size: 24px;
        margin-top: 66px;
        text-align: left
    }
}

@media only screen and (max-width:767px) {
    .grampus_contents_box__qu6MV {
        font-size: 12px;
        margin-top: 33px
    }
}

.grampus_button_box__lEoqu {
    margin-top: 58px
}

@media only screen and (max-width:1179px) {
    .grampus_button_box__lEoqu {
        margin-top: 152px
    }
}

@media only screen and (max-width:767px) {
    .grampus_button_box__lEoqu {
        margin-top: 76px
    }
}

.grampus_button__v8SsS {
    background: #14284e;
    border-radius: 90px;
    color: #fff;
    display: inline-block;
    font-family: Bungee, sans-serif;
    font-size: 24px;
    line-height: 16px;
    opacity: var(--sds-size-stroke-border);
    padding: 14px 40px;
    transition: all .1s ease-in-out
}

.grampus_button__v8SsS:hover {
    color: #fff;
    scale: 1.1
}

@media only screen and (max-width:1179px) {
    .grampus_button__v8SsS {
        font-size: 40px;
        padding: 28px 80px
    }
}

@media only screen and (max-width:767px) {
    .grampus_button__v8SsS {
        font-size: 20px;
        padding: 14px 40px
    }
}

.partners_section__HMVIn {
    position: relative
}

.partners_container__aID2j {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 90px
}

@media only screen and (max-width:1179px) {
    .partners_container__aID2j {
        padding-bottom: 166px
    }
}

@media only screen and (max-width:767px) {
    .partners_container__aID2j {
        padding-bottom: 83px
    }
}

.partners_title_box__WDfWm {
    color: #000;
    font-family: Bungee, cursive;
    font-size: 36px;
    padding: 45px 0 63px;
    text-align: center
}

@media only screen and (max-width:1179px) {
    .partners_title_box__WDfWm {
        font-size: 64px;
        padding: 90px 0 144px
    }
}

@media only screen and (max-width:767px) {
    .partners_title_box__WDfWm {
        font-size: 32px;
        padding: 45px 0 72px
    }
}

.partners_row__H9kPb {
    display: flex;
    flex-direction: row;
    justify-content: center
}

.partners_row__H9kPb:not(:last-child) {
    margin-bottom: 25px
}

@media only screen and (max-width:1179px) {
    .partners_row__H9kPb {
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        padding: 0 74px
    }

    .partners_row__H9kPb:not(:last-child) {
        margin-bottom: 0
    }
}

@media only screen and (max-width:767px) {
    .partners_row__H9kPb {
        padding: 0 37px
    }
}

.partners_partner_col__6YkPN {
    background: #f8f8f8bd;
    border-radius: 8px;
    box-shadow: 0 4px 4px 0 #00000040, -4px -4px 4px 0 #ffffff40;
    transform: translateX(-100vw);
    transition: all .8s ease-in
}

.partners_partner_col__6YkPN:not(:last-child) {
    margin-right: 34px
}

@media only screen and (max-width:1179px) {
    .partners_partner_col__6YkPN {
        flex-basis: calc(50% - 26px);
        flex-grow: 0;
        flex-shrink: 1;
        margin-bottom: 26px;
        margin-right: 0;
        transform: translateX(0)
    }

    .partners_partner_col__6YkPN:not(:last-child) {
        margin-right: 0
    }

    .partners_partner_col__6YkPN:nth-child(2n-1) {
        margin-right: 26px
    }
}

@media only screen and (max-width:767px) {
    .partners_partner_col__6YkPN {
        flex-basis: calc(50% - 13px);
        flex-grow: 0;
        flex-shrink: 1;
        margin-bottom: 13px
    }

    .partners_partner_col__6YkPN:nth-child(2n-1) {
        margin-right: 13px
    }
}

.separator_section__Ru-YL {
    display: flex;
    justify-content: center;
    position: relative
}

.separator_conatiner__xWnII {
    background-color: #e2e2e2;
    height: 1px;
    margin: 24px 10px
}

.normaland_main__WlM\+o {
    position: relative
}

.movie_section__-qVea {
    background-color: #0006;
    border-top: 1px solid #fff;
    overflow: hidden;
    position: relative
}

.movie_container__kbORX {
    position: static;
    text-align: center
}

@media only screen and (max-width:1179px) {
    .movie_container__kbORX {
        padding: 0 74px
    }
}

@media only screen and (max-width:767px) {
    .movie_container__kbORX {
        padding: 0 37px
    }
}

.movie_video__CAlZn {
    height: 100%;
    left: 0;
    position: absolute !important;
    top: 0;
    width: 100%;
    z-index: -1
}

@media only screen and (max-width:1179px) {
    .movie_video__CAlZn {
        height: 100%;
        left: 50%;
        transform: translateX(-50%);
        width: 1440px
    }
}

.movie_overlay__S8471 {
    padding: 129px 0 104px
}

@media only screen and (max-width:1179px) {
    .movie_overlay__S8471 {
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0
    }
}

.movie_sub_title__pgmKQ {
    color: #fff;
    font-family: poppins-bold, poppins, sans-serif;
    font-size: 100px;
    line-height: 109.5%;
    text-align: center
}

@media only screen and (max-width:1179px) {
    .movie_sub_title__pgmKQ {
        font-size: 110px;
        line-height: 109.5%;
        margin-top: 108px
    }
}

@media only screen and (max-width:767px) {
    .movie_sub_title__pgmKQ {
        font-size: 55px;
        margin-top: 54px
    }
}

.movie_contents__8BakC {
    color: #fff;
    font-family: poppins-medium, sans-serif;
    font-size: 20px;
    line-height: 117.5%;
    margin-top: 35px;
    text-align: center
}

@media only screen and (max-width:1179px) {
    .movie_contents__8BakC {
        font-size: 40px;
        margin-top: 40px
    }
}

@media only screen and (max-width:767px) {
    .movie_contents__8BakC {
        font-size: 20px;
        margin-top: 20px
    }
}

.movie_buttons__nbNLH {
    margin-top: 68px
}

@media only screen and (max-width:1179px) {
    .movie_buttons__nbNLH {
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 212px 0 190px
    }
}

@media only screen and (max-width:767px) {
    .movie_buttons__nbNLH {
        margin-top: 106px 0 95px
    }
}

.movie_button__RLOMk {
    display: inline-block;
    height: 70px;
    transition: all .2s ease-in-out;
    width: 238px
}

.movie_button__RLOMk:hover {
    scale: 1.05
}

.movie_button__RLOMk:not(:last-child) {
    margin-right: 16px
}

@media only screen and (max-width:1179px) {
    .movie_button__RLOMk {
        display: block;
        margin-right: 0
    }

    .movie_button__RLOMk:not(:last-child) {
        margin-bottom: 32px;
        margin-right: 0
    }
}

@media only screen and (max-width:767px) {
    .movie_button__RLOMk:not(:last-child) {
        margin-bottom: 16px
    }
}

.movie_mute_container__fUdwY {
    background: #0000005e;
    border-radius: 50px;
    bottom: 8px;
    height: 40px;
    left: 27px;
    padding: 8px 0 8px 13px;
    position: absolute;
    transition: all .2s ease-in-out;
    width: 120px
}

.movie_mute_container__fUdwY:hover {
    scale: 1.1
}

@media only screen and (max-width:1179px) {
    .movie_mute_container__fUdwY {
        bottom: 22px;
        left: 11px
    }
}

.movie_mute_button__ZYyuZ {
    align-items: center;
    display: flex
}

.movie_mute_button__ZYyuZ span {
    color: #fff;
    font-size: 14px;
    line-height: 16px;
    margin-left: 15px;
    margin-top: 3px
}

.banner_section__kb5C9 {
    overflow: hidden;
    position: relative
}

.banner_background_box__9fTZC {
    display: flex;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0
}

.banner_background_box__9fTZC img {
    object-fit: cover;
    overflow: visible;
    width: 100%
}

@media only screen and (max-width:1179px) {
    .banner_background_box__9fTZC img {
        transform: translateX(40%)
    }
}

@media only screen and (max-width:767px) {
    .banner_background_box__9fTZC img {
        transform: translateX(45%)
    }
}

@media only screen and (max-width:639px) {
    .banner_background_box__9fTZC img {
        transform: translateX(60%)
    }
}

@media only screen and (max-width:474px) {
    .banner_background_box__9fTZC img {
        transform: translateX(100%)
    }
}

.banner_container__1FWkU {
    align-items: flex-end;
    display: flex;
    flex-direction: column
}

@media only screen and (max-width:1179px) {
    .banner_container__1FWkU {
        align-items: center;
        justify-content: center;
        padding: 0 40px 0 46px
    }
}

@media only screen and (max-width:767px) {
    .banner_container__1FWkU {
        padding: 0 20px 0 23px
    }
}

.banner_logo_box__E7Txz {
    margin: 44px 0 0;
    text-align: right;
    width: 689px
}

@media only screen and (max-width:1179px) {
    .banner_logo_box__E7Txz {
        margin: 740px 0 0;
        width: 512px
    }
}

@media only screen and (max-width:1023px) {
    .banner_logo_box__E7Txz {
        margin: 370px 0 0;
        width: 256px
    }
}

.banner_mobile_bg_box__-PxKI {
    margin-bottom: 120px;
    padding: 0
}

@media only screen and (max-width:1179px) {
    .banner_mobile_bg_box__-PxKI {
        align-items: center;
        background: #00000080;
        border-radius: 5px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-top: 30px;
        padding: 26px 30px 22px;
        width: 100%
    }
}

@media only screen and (max-width:767px) {
    .banner_mobile_bg_box__-PxKI {
        margin-top: 15px;
        padding: 13px 15px 11px
    }
}

.banner_subtitle_box__4B4As {
    color: #fff;
    font-family: poppins-medium, sans-serif;
    font-size: 20px;
    margin: 0 46px 0 0;
    text-align: right;
    width: 546px
}

@media only screen and (max-width:1179px) {
    .banner_subtitle_box__4B4As {
        font-size: 24px;
        margin: 0;
        text-align: center;
        width: 100%
    }
}

@media only screen and (max-width:767px) {
    .banner_subtitle_box__4B4As {
        font-size: 12px
    }
}

.banner_button_box__u3hkZ {
    display: flex;
    justify-content: right;
    margin: 30px 46px 22px
}

@media only screen and (max-width:1179px) {
    .banner_button_box__u3hkZ {
        margin: 60px 0 0
    }
}

@media only screen and (max-width:767px) {
    .banner_button_box__u3hkZ {
        margin: 30px 0 0
    }
}

.banner_button__8qRag {
    align-items: center;
    background: #fff;
    border-radius: 69px;
    color: #14284e;
    display: flex;
    flex-direction: row;
    font-family: Bungee, sans-serif;
    font-size: 32px;
    justify-content: center;
    min-height: 60px;
    min-width: 258px;
    transition: all .1s ease-in-out
}

.banner_button__8qRag:hover {
    color: #14284e;
    scale: 1.1
}

.banner_button__8qRag img {
    height: 45px;
    margin-left: 23px;
    width: 45px
}

@media only screen and (max-width:1179px) {
    .banner_button__8qRag {
        font-size: 40px;
        min-height: 84px;
        min-width: 290px
    }

    .banner_button__8qRag img {
        height: 50px;
        margin-left: 10px;
        width: 50px
    }

    .banner_button__8qRag:hover {
        scale: 1
    }
}

@media only screen and (max-width:767px) {
    .banner_button__8qRag {
        font-size: 20px;
        min-height: 42px;
        min-width: 145px
    }

    .banner_button__8qRag img {
        height: 25px;
        margin-left: 5px;
        width: 25px
    }
}

.introduce_section__C-C6j {
    position: relative
}

.introduce_container__fsf8o {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 45px 0 103px
}

@media only screen and (max-width:1179px) {
    .introduce_container__fsf8o {
        padding: 90px 54px 124px 52px
    }
}

@media only screen and (max-width:767px) {
    .introduce_container__fsf8o {
        padding: 45px 27px 62px 26px
    }
}

.introduce_title_box__qfVtC {
    color: #14284e;
    font-family: Bungee, cursive;
    font-size: 36px
}

@media only screen and (max-width:1179px) {
    .introduce_title_box__qfVtC {
        font-size: 64px
    }
}

@media only screen and (max-width:767px) {
    .introduce_title_box__qfVtC {
        font-size: 32px
    }
}

.introduce_subtitle_box__zkuOq {
    color: #14284e;
    font-family: Montserrat;
    font-size: 20px;
    margin-top: 15px
}

@media only screen and (max-width:1179px) {
    .introduce_subtitle_box__zkuOq {
        font-size: 24px;
        margin-top: 30px
    }
}

@media only screen and (max-width:767px) {
    .introduce_subtitle_box__zkuOq {
        font-size: 12px;
        margin-top: 15px
    }
}

.introduce_content_box__84nUL {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 65px
}

@media only screen and (max-width:1179px) {
    .introduce_content_box__84nUL {
        flex-direction: column;
        margin-top: 62px;
        width: 100%
    }
}

@media only screen and (max-width:767px) {
    .introduce_content_box__84nUL {
        margin-top: 31px
    }
}

.introduce_card__VDglA {
    flex: 0 0 273px;
    min-height: 440px
}

@media only screen and (max-width:1179px) {
    .introduce_card__VDglA {
        flex: 0 0 auto;
        min-height: auto;
        width: 100%
    }
}

.card_card__xFEDY {
    border: 2px solid #e9e9e9;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    padding: 16px 13px 25px
}

.card_card__xFEDY:not(:last-child) {
    margin-right: 40px
}

@media only screen and (max-width:1179px) {
    .card_card__xFEDY {
        padding: 32px 30px 42px 26px
    }

    .card_card__xFEDY:not(:last-child) {
        margin-bottom: 54px;
        margin-right: 0
    }
}

@media only screen and (max-width:767px) {
    .card_card__xFEDY {
        padding: 16px 15px 21px 13px
    }

    .card_card__xFEDY:not(:last-child) {
        margin-bottom: 27px
    }
}

.card_image_box__38mJM {
    border-radius: 13px;
    height: 100%;
    overflow: hidden;
    width: 100%
}

.card_image_box__38mJM img {
    height: 100%;
    object-fit: cover;
    width: 100%
}

.card_title_box__pPuls {
    color: #000;
    font-family: Bungee, sans-serif;
    font-size: 24px;
    line-height: 120%;
    margin-top: 18px;
    text-align: center
}

@media only screen and (max-width:1179px) {
    .card_title_box__pPuls {
        font-size: 48px;
        margin-top: 36px
    }
}

@media only screen and (max-width:767px) {
    .card_title_box__pPuls {
        font-size: 24px;
        margin-top: 18px
    }
}

.card_contents_box__MNuRb {
    color: #000;
    font-family: Bungee, sans-serif;
    font-size: 12px;
    margin-top: 10px;
    text-align: center
}

@media only screen and (max-width:1179px) {
    .card_contents_box__MNuRb {
        font-size: 28px;
        margin-top: 10px
    }
}

@media only screen and (max-width:767px) {
    .card_contents_box__MNuRb {
        font-size: 14px;
        margin-top: 5px
    }
}

.screenshot_section__SrrJj {
    position: relative
}

.screenshot_container__ReM22 {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 100%;
    padding: 50px 0 130px
}

@media only screen and (max-width:1179px) {
    .screenshot_container__ReM22 {
        padding: 90px 0 168px
    }
}

@media only screen and (max-width:767px) {
    .screenshot_container__ReM22 {
        padding: 45px 0 84px
    }
}

.screenshot_title_box__3nVnF {
    color: #14284e;
    font-family: Bungee, cursive;
    font-size: 36px;
    margin-bottom: 92px
}

@media only screen and (max-width:1179px) {
    .screenshot_title_box__3nVnF {
        font-size: 64px;
        margin-bottom: 54px
    }
}

@media only screen and (max-width:767px) {
    .screenshot_title_box__3nVnF {
        font-size: 32px;
        margin-bottom: 27px
    }
}

.screenshot_content_box__6D1MS {
    height: 600px;
    overflow: visible
}

.screenshot_content_box__6D1MS img {
    height: 100%;
    object-fit: cover;
    width: 100%
}

@media only screen and (max-width:1179px) {
    .screenshot_content_box__6D1MS {
        height: 480px
    }
}

@media only screen and (max-width:767px) {
    .screenshot_content_box__6D1MS {
        height: 240px
    }
}

.economy_section__1K6y1 {
    position: relative
}

.economy_container__7P4mI {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 45px 0 68px
}

@media only screen and (max-width:1179px) {
    .economy_container__7P4mI {
        padding: 90px 54px 170px 56px
    }
}

@media only screen and (max-width:767px) {
    .economy_container__7P4mI {
        padding: 45px 27px 85px 28px
    }
}

.economy_title_box__uyq46 {
    color: #14284e;
    font-family: Bungee, cursive;
    font-size: 36px
}

@media only screen and (max-width:1179px) {
    .economy_title_box__uyq46 {
        font-size: 64px
    }
}

@media only screen and (max-width:767px) {
    .economy_title_box__uyq46 {
        font-size: 32px
    }
}

.economy_subtitle_box__ino6l {
    color: #14284e;
    font-family: Montserrat;
    font-size: 20px;
    margin-top: 15px
}

@media only screen and (max-width:1179px) {
    .economy_subtitle_box__ino6l {
        font-size: 24px;
        margin-top: 30px
    }
}

@media only screen and (max-width:767px) {
    .economy_subtitle_box__ino6l {
        font-size: 12px;
        margin-top: 15px
    }
}

.economy_content_box__E4mV6 {
    margin-top: 48px
}

@media only screen and (max-width:1179px) {
    .economy_content_box__E4mV6 {
        margin-top: 108px
    }
}

@media only screen and (max-width:767px) {
    .economy_content_box__E4mV6 {
        margin-top: 54px
    }
}

.ocs_main__2hTKP {
    position: relative
}

.minting_section__hbg7m {
    overflow: hidden;
    position: relative
}

.minting_bg_video__UH35h {
    height: 300px;
    width: 600px
}

.minting_bg_box__jlXsf {
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%
}

.minting_bg_box__jlXsf .minting_bg_video__UH35h {
    height: 100%;
    left: 0;
    object-fit: cover;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0
}

.minting_bg_box__jlXsf .minting_bg_img1__u-6BA {
    height: 712px;
    left: -88px;
    position: absolute;
    top: -189px;
    width: 478px;
    z-index: 1
}

@media only screen and (max-width:1179px) {
    .minting_bg_box__jlXsf .minting_bg_img1__u-6BA {
        height: 514px;
        left: -60px;
        top: 16px;
        width: 342px
    }
}

@media only screen and (max-width:767px) {
    .minting_bg_box__jlXsf .minting_bg_img1__u-6BA {
        height: 257px;
        left: -30px;
        top: 8px;
        width: 171px
    }
}

.minting_bg_box__jlXsf .minting_bg_img2__TrvWS {
    height: 247px;
    position: absolute;
    right: -28px;
    top: 136px;
    width: 223px;
    z-index: 0
}

@media only screen and (max-width:1179px) {
    .minting_bg_box__jlXsf .minting_bg_img2__TrvWS {
        height: 218px;
        right: -42px;
        top: 64px;
        width: 192px
    }
}

@media only screen and (max-width:767px) {
    .minting_bg_box__jlXsf .minting_bg_img2__TrvWS {
        height: 109px;
        right: -21px;
        top: 32px;
        width: 96px
    }
}

.minting_bg_box__jlXsf .minting_bg_img3__9mF\+k {
    height: 781px;
    position: absolute;
    right: -188px;
    top: 490px;
    width: 711px;
    z-index: 2
}

@media only screen and (max-width:1179px) {
    .minting_bg_box__jlXsf .minting_bg_img3__9mF\+k {
        height: 626px;
        right: -198px;
        top: 694px;
        width: 586px
    }
}

@media only screen and (max-width:767px) {
    .minting_bg_box__jlXsf .minting_bg_img3__9mF\+k {
        height: 313px;
        right: -99px;
        top: 347px;
        width: 293px
    }
}

.minting_bg_box__jlXsf .minting_bg_img4__mcJb6 {
    height: 604px;
    left: -116px;
    position: absolute;
    top: 1199px;
    width: 387px;
    z-index: 1
}

@media only screen and (max-width:1179px) {
    .minting_bg_box__jlXsf .minting_bg_img4__mcJb6 {
        height: 364px;
        left: -94px;
        top: 1138px;
        width: 230px
    }
}

@media only screen and (max-width:767px) {
    .minting_bg_box__jlXsf .minting_bg_img4__mcJb6 {
        height: 182px;
        left: -47px;
        top: 569px;
        width: 115px
    }
}

.minting_bg_box__jlXsf .minting_bg_img5__m6Lsd {
    height: 316px;
    position: absolute;
    right: -70px;
    top: 1429px;
    width: 307px;
    z-index: 1
}

@media only screen and (max-width:1179px) {
    .minting_bg_box__jlXsf .minting_bg_img5__m6Lsd {
        height: 254px;
        right: -162px;
        top: 1404px;
        width: 264px
    }
}

@media only screen and (max-width:767px) {
    .minting_bg_box__jlXsf .minting_bg_img5__m6Lsd {
        height: 127px;
        right: -81px;
        top: 702px;
        width: 132px
    }
}

.minting_container__ypk\+F {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 260px
}

@media only screen and (max-width:1179px) {
    .minting_container__ypk\+F {
        margin-top: 192;
        padding: 0 54px
    }
}

@media only screen and (max-width:767px) {
    .minting_container__ypk\+F {
        margin-top: 96px;
        padding: 0 27px
    }
}

.minting_banner_box__HHwrX {
    background-color: #0052ff;
    left: 0;
    position: absolute;
    top: 21px;
    transition: all .1s ease-in-out
}

.minting_banner_box__HHwrX:hover {
    scale: 1.05
}

@media only screen and (max-width:1179px) {
    .minting_banner_box__HHwrX {
        display: flex;
        flex-direction: column;
        height: 94px;
        justify-content: center;
        top: 26px
    }

    .minting_banner_box__HHwrX:hover {
        scale: 1
    }
}

@media only screen and (max-width:767px) {
    .minting_banner_box__HHwrX {
        height: 47px;
        top: 13px
    }
}

.minting_banner_slide_box__ec\+QF {
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-name: minting_slide__XTc4V;
    animation-timing-function: linear;
    display: flex;
    flex-direction: row;
    margin-left: 0;
    padding: 22px 0 15px
}

@keyframes minting_slide__XTc4V {
    0% {
        transform: translateX(0)
    }

    to {
        transform: translateX(-1044px)
    }
}

@media only screen and (max-width:1179px) {
    .minting_banner_slide_box__ec\+QF {
        justify-content: center;
        padding: 0
    }

    @keyframes minting_slide__XTc4V {
        0% {
            transform: translateX(0)
        }

        to {
            transform: translateX(calc(-100% - 49px))
        }
    }
}

.minting_banner_img__JBhLT {
    height: 87px;
    margin-right: 49px;
    width: 995px
}

@media only screen and (max-width:1179px) {
    .minting_banner_img__JBhLT {
        height: 100%;
        width: 100%
    }
}

.minting_connect_box__kFZnd {
    background: #00000080;
    border-radius: 15px;
    padding: 34px 69px 30px 107px;
    text-align: center;
    z-index: 2
}

@media only screen and (max-width:1179px) {
    .minting_connect_box__kFZnd {
        padding: 46px 30px 44px
    }
}

@media only screen and (max-width:767px) {
    .minting_connect_box__kFZnd {
        padding: 23px 15px 22px
    }
}

.minting_title_box__DbzbY {
    color: #fff;
    font-family: poppins-bold, poppins, sans-serif;
    font-size: 32px;
    margin-bottom: 10px
}

@media only screen and (max-width:1179px) {
    .minting_title_box__DbzbY {
        font-size: 24px;
        margin-bottom: 20px
    }
}

@media only screen and (max-width:767px) {
    .minting_title_box__DbzbY {
        font-size: 12px;
        margin-bottom: 10px
    }
}

.minting_contents_box__JeXIN {
    color: #fff;
    font-family: poppins-bold, poppins, sans-serif;
    font-size: 48px;
    line-height: 101.5%;
    margin-bottom: 25px
}

@media only screen and (max-width:1179px) {
    .minting_contents_box__JeXIN {
        font-size: 40px;
        margin-bottom: 46px
    }
}

@media only screen and (max-width:767px) {
    .minting_contents_box__JeXIN {
        font-size: 20px;
        margin-bottom: 23px
    }
}

.minting_exp_box__vHLVw {
    background-color: #ffffffb3;
    border: 2px solid #d3d3d3;
    border-radius: 15px;
    box-shadow: 4px 4px 4px 0 #00000040;
    margin-bottom: 32px;
    padding: 12px 36px
}

@media only screen and (max-width:1179px) {
    .minting_exp_box__vHLVw {
        margin-bottom: 46px;
        padding: 24px 14px 24px 24px
    }
}

@media only screen and (max-width:767px) {
    .minting_exp_box__vHLVw {
        margin-bottom: 23px;
        padding: 12px 7px 12px 12px
    }
}

.minting_exp_title__aJteb {
    align-items: flex-start;
    color: #000;
    display: flex;
    flex-direction: row;
    font-family: poppins-medium, sans-serif;
    font-size: 24px;
    justify-content: flex-start;
    text-align: left
}

@media only screen and (max-width:767px) {
    .minting_exp_title__aJteb {
        font-size: 12px
    }
}

.minting_exp_icon__ZALJk {
    height: 32px;
    margin: 4px 13px 0 0;
    width: 32px
}

@media only screen and (max-width:1179px) {
    .minting_exp_icon__ZALJk {
        height: 30px;
        margin: 3px 10px 0 0;
        width: 30px
    }
}

@media only screen and (max-width:767px) {
    .minting_exp_icon__ZALJk {
        height: 15px;
        margin: 1.5px 5px 0 0;
        width: 15px
    }
}

.minting_connect_button_box__FKl0e {
    display: flex;
    justify-content: center
}

@media only screen and (max-width:1179px) {
    .minting_connect_button_box__FKl0e {
        align-items: center;
        flex-direction: column
    }
}

.minting_connect_button__pBseZ {
    align-items: center;
    background: #fff;
    border-radius: 90px;
    display: flex;
    justify-content: center;
    min-height: 44px;
    min-width: 239px;
    transition: all .1s ease-in-out
}

.minting_connect_button__pBseZ button {
    color: #14284e;
    font-family: Bungee, sans-serif;
    font-size: 24px;
    line-height: 16px
}

.minting_connect_button__pBseZ:hover {
    color: #14284e;
    scale: 1.1
}

@media only screen and (max-width:1179px) {
    .minting_connect_button__pBseZ {
        display: inline-flex;
        min-height: 72px;
        min-width: 414px;
        width: -moz-fit-content;
        width: fit-content
    }

    .minting_connect_button__pBseZ button {
        font-size: 40px
    }

    .minting_connect_button__pBseZ:hover {
        scale: 1
    }
}

@media only screen and (max-width:767px) {
    .minting_connect_button__pBseZ {
        min-height: 36px;
        min-width: 207px
    }

    .minting_connect_button__pBseZ button {
        font-size: 20px
    }
}

.minting_more_button__YUaX4 {
    align-items: center;
    background: #fff;
    border-radius: 90px;
    color: #14284e;
    display: flex;
    font-family: Bungee, sans-serif;
    font-size: 24px;
    justify-content: center;
    line-height: 16px;
    margin-left: 24px;
    min-height: 44px;
    min-width: 185px;
    transition: all .1s ease-in-out
}

.minting_more_button__YUaX4:hover {
    color: #14284e;
    scale: 1.1
}

@media only screen and (max-width:1179px) {
    .minting_more_button__YUaX4 {
        font-size: 40px;
        margin-left: 0;
        margin-top: 18px;
        min-height: 72px;
        min-width: 414px;
        width: -moz-fit-content;
        width: fit-content
    }

    .minting_more_button__YUaX4:hover {
        scale: 1
    }
}

@media only screen and (max-width:767px) {
    .minting_more_button__YUaX4 {
        font-size: 20px;
        margin-top: 9px;
        min-height: 36px;
        min-width: 207px
    }
}

.minting_fruits_select_box__jERAb {
    background-color: #00000080;
    border-radius: 15px;
    margin-bottom: 101px;
    margin-top: 562px;
    padding: 52px 26px 44px;
    text-align: center;
    z-index: 2
}

@media only screen and (max-width:1179px) {
    .minting_fruits_select_box__jERAb {
        margin-bottom: 66px;
        margin-top: 96px;
        padding: 38px 28px
    }
}

@media only screen and (max-width:767px) {
    .minting_fruits_select_box__jERAb {
        margin-bottom: 33px;
        margin-top: 48px;
        padding: 19px 14px
    }
}

.minting_select_title_box__d4krE {
    color: #fff;
    font-family: Bungee, sans-serif;
    font-size: 48px;
    line-height: 101.5%;
    margin-bottom: 44px
}

@media only screen and (max-width:1179px) {
    .minting_select_title_box__d4krE {
        font-size: 60px;
        margin-bottom: 74px
    }
}

@media only screen and (max-width:767px) {
    .minting_select_title_box__d4krE {
        font-size: 30px;
        margin-bottom: 37px
    }
}

.minting_select_box__ohZKt {
    align-items: center;
    display: flex;
    flex-direction: row;
    height: 286px;
    justify-content: center;
    width: 100%
}

@media only screen and (max-width:1179px) {
    .minting_select_box__ohZKt {
        height: auto
    }
}

.minting_select_card__HQw\+U {
    cursor: pointer;
    height: 270px;
    margin: 0 4px 44px;
    position: relative;
    transition: all .1s ease-in-out;
    width: 200px
}

.minting_select_card__HQw\+U.minting_selected__75My- {
    height: 286px;
    width: 212px
}

.minting_select_card__HQw\+U.minting_disabled__uAF6q {
    cursor: not-allowed
}

@media only screen and (max-width:1179px) {
    .minting_select_card__HQw\+U {
        aspect-ratio: 52/70;
        flex: 1 1 104px;
        height: auto;
        width: auto
    }

    .minting_select_card__HQw\+U.minting_selected__75My- {
        aspect-ratio: 52/70;
        flex: 1 1 110px;
        height: auto;
        width: auto
    }
}

@media only screen and (max-width:767px) {
    .minting_select_card__HQw\+U {
        aspect-ratio: 52/70;
        flex: 1 1 52px
    }

    .minting_select_card__HQw\+U.minting_selected__75My- {
        aspect-ratio: 52/70;
        flex: 1 1 57px
    }
}

.minting_select_img__8nM6J {
    background-image: linear-gradient(0, #cfcfcf, #cfcfcf);
    background-origin: border-box;
    border: 4px solid #0000;
    border-radius: 15px;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transition: scale, opacity .1s ease-in-out;
    width: 100%
}

.minting_select_img_normal__JKR2m {
    background-image: linear-gradient(0, #cfcfcf, #cfcfcf);
    opacity: 1
}

.minting_select_img_normal__JKR2m.minting_hidden__ivlui {
    opacity: 0
}

.minting_select_img_normal__JKR2m.minting_selected__75My- {
    animation: minting_rotateGradient__lcUSn 1s linear infinite;
    background-image: linear-gradient(120deg, #ff6464, #f8ff73)
}

@keyframes minting_rotateGradient__lcUSn {
    0% {
        background-image: linear-gradient(120deg, #ff6464, #f8ff73)
    }

    5% {
        background-image: linear-gradient(138deg, #ff6464, #f8ff73)
    }

    10% {
        background-image: linear-gradient(156deg, #ff6464, #f8ff73)
    }

    15% {
        background-image: linear-gradient(174deg, #ff6464, #f8ff73)
    }

    20% {
        background-image: linear-gradient(192deg, #ff6464, #f8ff73)
    }

    25% {
        background-image: linear-gradient(210deg, #ff6464, #f8ff73)
    }

    30% {
        background-image: linear-gradient(228deg, #ff6464, #f8ff73)
    }

    35% {
        background-image: linear-gradient(246deg, #ff6464, #f8ff73)
    }

    40% {
        background-image: linear-gradient(264deg, #ff6464, #f8ff73)
    }

    45% {
        background-image: linear-gradient(282deg, #ff6464, #f8ff73)
    }

    50% {
        background-image: linear-gradient(300deg, #ff6464, #f8ff73)
    }

    55% {
        background-image: linear-gradient(318deg, #ff6464, #f8ff73)
    }

    60% {
        background-image: linear-gradient(336deg, #ff6464, #f8ff73)
    }

    65% {
        background-image: linear-gradient(354deg, #ff6464, #f8ff73)
    }

    70% {
        background-image: linear-gradient(372deg, #ff6464, #f8ff73)
    }

    75% {
        background-image: linear-gradient(390deg, #ff6464, #f8ff73)
    }

    80% {
        background-image: linear-gradient(408deg, #ff6464, #f8ff73)
    }

    85% {
        background-image: linear-gradient(426deg, #ff6464, #f8ff73)
    }

    90% {
        background-image: linear-gradient(444deg, #ff6464, #f8ff73)
    }

    95% {
        background-image: linear-gradient(462deg, #ff6464, #f8ff73)
    }

    to {
        background-image: linear-gradient(480deg, #ff6464, #f8ff73)
    }
}

.minting_mint_button__8mnYW {
    background: #fff;
    border-radius: 90px;
    color: #14284e;
    font-family: Bungee, sans-serif;
    font-size: 24px;
    line-height: 16px;
    min-height: 52px;
    min-width: 214px;
    transition: all .1s ease-in-out
}

.minting_mint_button__8mnYW:hover {
    scale: 1.1
}

.minting_mint_button__8mnYW.minting_disabled__uAF6q {
    background: #afafaf;
    cursor: not-allowed
}

.minting_mint_button__8mnYW.minting_disabled__uAF6q:hover {
    scale: 1
}

@media only screen and (max-width:1179px) {
    .minting_mint_button__8mnYW {
        font-size: 40px;
        min-height: 68px;
        min-width: 288px
    }

    .minting_mint_button__8mnYW:hover {
        scale: 1
    }
}

@media only screen and (max-width:767px) {
    .minting_mint_button__8mnYW {
        font-size: 20px;
        min-height: 34px;
        min-width: 144px
    }
}

.minting_loading__gw5oO {
    height: 32px;
    width: 32px
}

.minting_modal_box__QkT6d {
    align-items: center;
    display: flex;
    flex-direction: column;
    position: relative
}

.minting_modal_outer__Ga-jf {
    overflow: hidden;
    padding: 0 !important
}

.minting_modal_bg_video__IH\+QK {
    height: 100%;
    left: 0;
    position: absolute !important;
    top: 0;
    width: 100%
}

.minting_modal_title_box__e8EZD {
    animation: minting_fadeIn__WLEUA .5s 3s forwards;
    color: #14284e;
    font-family: poppins-bold, poppins, sans-serif;
    font-size: 48px;
    margin: 29px 0 0;
    opacity: 0
}

@media only screen and (max-width:767px) {
    .minting_modal_title_box__e8EZD {
        font-size: 24px;
        margin: 14.5px 0 0
    }
}

.minting_nft_image_box__Br-hO {
    animation: minting_fadeIn__WLEUA .5s 3.5s forwards;
    border-radius: 15px;
    height: 314px;
    margin-top: 43px;
    opacity: 0;
    overflow: hidden;
    width: 314px
}

@media only screen and (max-width:767px) {
    .minting_nft_image_box__Br-hO {
        height: 157px;
        margin-top: 21.5px;
        width: 157px
    }
}

.minting_nft_info_box__RiU83 {
    animation: minting_fadeIn__WLEUA .5s 3.25s forwards;
    color: #14284e;
    font-family: poppins-medium, sans-serif;
    font-size: 20px;
    margin-top: 15px;
    opacity: 0
}

@media only screen and (max-width:767px) {
    .minting_nft_info_box__RiU83 {
        font-size: 10px;
        margin-top: 7.5px
    }
}

.minting_close_button_box__xcxkB {
    animation: minting_fadeIn__WLEUA .5s 3.75s forwards;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 30px 0 40px;
    opacity: 0
}

@media only screen and (max-width:1179px) {
    .minting_close_button_box__xcxkB {
        flex-direction: column-reverse
    }
}

@media only screen and (max-width:767px) {
    .minting_close_button_box__xcxkB {
        margin: 15px 0 20px
    }
}

.minting_close_button__m4HFI,
.minting_detail_button__kDJPD {
    background: #14284e;
    border-radius: 90px;
    color: #fff;
    font-family: Bungee, sans-serif;
    font-size: 24px;
    line-height: 16px;
    min-height: 52px;
    min-width: 181px;
    transition: all .1s ease-in-out
}

.minting_close_button__m4HFI:hover,
.minting_detail_button__kDJPD:hover {
    color: #fff;
    scale: 1.1
}

@media only screen and (max-width:1179px) {

    .minting_close_button__m4HFI,
    .minting_detail_button__kDJPD {
        font-size: 20px;
        min-height: 52px;
        min-width: 183px
    }

    .minting_close_button__m4HFI:hover,
    .minting_detail_button__kDJPD:hover {
        scale: 1
    }
}

@media only screen and (max-width:767px) {

    .minting_close_button__m4HFI,
    .minting_detail_button__kDJPD {
        font-size: 12px;
        min-height: 26px;
        min-width: 91px
    }
}

.minting_detail_button__kDJPD {
    align-items: center;
    display: flex;
    justify-content: center;
    margin-left: 24px
}

@media only screen and (max-width:1179px) {
    .minting_detail_button__kDJPD {
        margin-bottom: 28px;
        margin-left: 0
    }
}

@media only screen and (max-width:767px) {
    .minting_detail_button__kDJPD {
        margin-bottom: 14px
    }
}

@keyframes minting_fadeIn__WLEUA {
    0% {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.Player_player__HU4p\+ {
    position: relative
}

.Player_player__HU4p\+ .Player_preview__PjRXS {
    height: 100%;
    width: 100%
}

.Player_player__HU4p\+ .Player_preview__PjRXS:hover .Player_control__biM4H {
    opacity: 1
}

.Player_player__HU4p\+ .Player_preview__PjRXS .Player_video__lHBR0 {
    height: 100%;
    object-fit: cover;
    width: 100%
}

.Player_player__HU4p\+ .Player_preview__PjRXS .Player_control__biM4H {
    align-items: center;
    background: #fcfcfd;
    border-radius: 20px;
    bottom: 14px;
    display: flex;
    height: 40px;
    left: 8px;
    opacity: 0;
    padding: 0 20px;
    position: absolute;
    right: 8px;
    transition: opacity .2s ease-in-out;
    z-index: 1
}

.dark-mode .Player_player__HU4p\+ .Player_preview__PjRXS .Player_control__biM4H {
    background: #141416
}

.Player_player__HU4p\+ .Player_preview__PjRXS .Player_control__biM4H .Player_button__cD2Ax svg {
    fill: #777e90;
    transition: fill .2s
}

.Player_player__HU4p\+ .Player_preview__PjRXS .Player_control__biM4H .Player_button__cD2Ax:hover svg {
    fill: #23262f
}

.dark-mode .Player_player__HU4p\+ .Player_preview__PjRXS .Player_control__biM4H .Player_button__cD2Ax:hover svg {
    fill: #fcfcfd
}

.Player_player__HU4p\+ .Player_preview__PjRXS .Player_control__biM4H .Player_button__cD2Ax:not(:last-child) {
    margin-right: 24px
}

@media only screen and (max-width:767px) {
    .Player_player__HU4p\+ .Player_preview__PjRXS .Player_control__biM4H .Player_button__cD2Ax:not(:last-child) {
        margin-right: 16px
    }
}

.Player_player__HU4p\+ .Player_preview__PjRXS .Player_control__biM4H .Player_line__HwtF7 {
    background: #e6e8ec;
    border-radius: 4px;
    flex-grow: 1;
    height: 8px;
    margin-right: 24px;
    position: relative
}

@media only screen and (max-width:767px) {
    .Player_player__HU4p\+ .Player_preview__PjRXS .Player_control__biM4H .Player_line__HwtF7 {
        margin-right: 16px
    }
}

.dark-mode .Player_player__HU4p\+ .Player_preview__PjRXS .Player_control__biM4H .Player_line__HwtF7 {
    background: #353945
}

.Player_player__HU4p\+ .Player_preview__PjRXS .Player_control__biM4H .Player_line__HwtF7 .Player_progress__MJVf5 {
    background: #3772ff;
    border-radius: 4px;
    bottom: 0;
    left: 0;
    position: absolute;
    top: 0
}

.Player_player__HU4p\+ .Player_preview__PjRXS .Player_control__biM4H .Player_time__3ABCZ {
    margin-right: 24px
}

@media only screen and (max-width:767px) {
    .Player_player__HU4p\+ .Player_preview__PjRXS .Player_control__biM4H .Player_time__3ABCZ {
        margin-right: 16px
    }
}

.movie_section__ulWV5 {
    overflow: hidden;
    position: relative
}

.movie_container__Lied- {
    position: static;
    text-align: center
}

.movie_video__vWTHN {
    height: 100%;
    left: 0;
    position: absolute !important;
    top: 0;
    width: 100%;
    z-index: -1
}

@media only screen and (max-width:1179px) {
    .movie_video__vWTHN {
        height: 100%;
        left: 50%;
        transform: translateX(-50%);
        width: 1440px
    }
}

.movie_dim_box__zO0Re {
    background: #00000080;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1
}

.movie_container__Lied- {
    display: flex;
    flex-direction: column;
    justify-content: center
}

.movie_title_box__XE7GF {
    color: #fff;
    font-family: poppins-bold, poppins, sans-serif;
    font-size: 96px;
    line-height: 101.5%;
    padding-top: 224px;
    text-align: center
}

@media only screen and (max-width:1179px) {
    .movie_title_box__XE7GF {
        font-size: 110px;
        padding-top: 214px
    }
}

@media only screen and (max-width:767px) {
    .movie_title_box__XE7GF {
        font-size: 55px;
        padding-top: 107px
    }
}

.movie_subtitle_box__6XEEl {
    color: #fff;
    font-family: poppins-medium, sans-serif;
    font-size: 20px;
    line-height: 101.5%;
    margin-top: 37px;
    text-align: center
}

@media only screen and (max-width:1179px) {
    .movie_subtitle_box__6XEEl {
        font-size: 40px;
        margin-top: 74px
    }
}

@media only screen and (max-width:767px) {
    .movie_subtitle_box__6XEEl {
        font-size: 20px;
        margin-top: 37px
    }
}

.movie_button_box__DW0Gw {
    display: flex;
    justify-content: center;
    margin: 115px 0 152px
}

@media only screen and (max-width:1179px) {
    .movie_button_box__DW0Gw {
        margin: 310px 0 280px
    }
}

@media only screen and (max-width:767px) {
    .movie_button_box__DW0Gw {
        margin: 155px 0 140px
    }
}

.movie_button__w8Z9U {
    align-items: center;
    background: #14284e;
    border-radius: 90px;
    color: #fff;
    display: flex;
    font-family: Bungee, sans-serif;
    font-size: 40px;
    justify-content: center;
    min-height: 56px;
    min-width: 346px;
    transition: all .1s ease-in-out
}

.movie_button__w8Z9U:hover {
    color: #fff;
    scale: 1.1
}

.movie_button__w8Z9U.movie_disabled__xwvJq {
    background: #afafaf;
    cursor: not-allowed
}

.movie_button__w8Z9U.movie_disabled__xwvJq:hover {
    scale: 1
}

@media only screen and (max-width:1179px) {
    .movie_button__w8Z9U {
        font-size: 40px;
        min-height: 112px;
        min-width: 406px
    }

    .movie_button__w8Z9U:hover {
        scale: 1
    }
}

@media only screen and (max-width:767px) {
    .movie_button__w8Z9U {
        font-size: 20px;
        min-height: 56px;
        min-width: 203px
    }
}

.movie_mute_container__ZCNNx {
    background: #0000005e;
    border-radius: 50px;
    bottom: 8px;
    height: 40px;
    left: 27px;
    padding: 8px 0 8px 13px;
    position: absolute;
    transition: all .2s ease-in-out;
    width: 120px
}

.movie_mute_container__ZCNNx:hover {
    scale: 1.1
}

@media only screen and (max-width:1179px) {
    .movie_mute_container__ZCNNx {
        bottom: 22px;
        left: 11px
    }

    .movie_mute_container__ZCNNx:hover {
        scale: 1
    }
}

.movie_mute_button__IBa9y {
    align-items: center;
    display: flex
}

.movie_mute_button__IBa9y span {
    color: #fff;
    font-size: 14px;
    line-height: 16px;
    margin-left: 15px;
    margin-top: 3px
}

.banner_section__tLrSC {
    min-height: 798px;
    overflow: hidden;
    position: relative
}

@media only screen and (max-width:1179px) {
    .banner_section__tLrSC {
        justify-content: flex-start;
        min-height: 1276px
    }
}

@media only screen and (max-width:1023px) {
    .banner_section__tLrSC {
        min-height: 638px
    }
}

.banner_background_box__y1TDq {
    display: flex;
    height: 100%;
    justify-content: right;
    left: 0;
    min-height: 798px;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0
}

@media only screen and (max-width:1179px) {
    .banner_background_box__y1TDq {
        min-height: 1276px
    }
}

@media only screen and (max-width:1023px) {
    .banner_background_box__y1TDq {
        min-height: 638px
    }
}

.banner_background_box__y1TDq img {
    object-fit: cover;
    width: 100%
}

.banner_container__yygOe {
    display: flex;
    flex-direction: column;
    justify-content: center
}

.banner_splat_box__unSAy {
    height: 651px;
    left: 50%;
    position: absolute;
    top: 151px;
    transform: translateX(-60%);
    width: 901px;
    z-index: 1
}

@media only screen and (max-width:1179px) {
    .banner_splat_box__unSAy {
        height: 850px;
        top: 354px;
        width: 1070px
    }
}

@media only screen and (max-width:1023px) {
    .banner_splat_box__unSAy {
        height: 425px;
        top: 177px;
        width: 535px
    }
}

.banner_logo_box__dqKQn {
    height: 253px;
    left: 50%;
    position: absolute;
    top: 204px;
    transform: translateX(-50%);
    width: 478px;
    z-index: 2
}

@media only screen and (max-width:1179px) {
    .banner_logo_box__dqKQn {
        height: 318px;
        top: 254px;
        width: 602px
    }
}

@media only screen and (max-width:1023px) {
    .banner_logo_box__dqKQn {
        height: 159px;
        top: 127px;
        width: 301px
    }
}

.banner_content_box__CvNte {
    color: #14284e;
    font-family: poppins-medium, sans-serif;
    font-size: 20px;
    line-height: 101.5%;
    margin: 489px 0 0;
    text-align: center;
    z-index: 3
}

@media only screen and (max-width:1179px) {
    .banner_content_box__CvNte {
        font-size: 30px;
        margin: 626px 0 0
    }
}

@media only screen and (max-width:1023px) {
    .banner_content_box__CvNte {
        font-size: 15px;
        margin: 313px 0 0
    }
}

.banner_button_box__vpAx- {
    display: flex;
    justify-content: center;
    margin: 32px 0 0;
    z-index: 3
}

@media only screen and (max-width:1179px) {
    .banner_button_box__vpAx- {
        margin: 52px 0 0
    }
}

.banner_button__UA9qm {
    align-items: center;
    background: #14284e;
    border-radius: 90px;
    color: #fff;
    display: flex;
    font-family: Bungee, sans-serif;
    font-size: 24px;
    justify-content: center;
    min-height: 57px;
    min-width: 173px;
    transition: all .1s ease-in-out
}

.banner_button__UA9qm:hover {
    color: #fff;
    scale: 1.1
}

.banner_button__UA9qm.banner_disabled__Dcmhw {
    background: #afafaf;
    cursor: not-allowed
}

.banner_button__UA9qm.banner_disabled__Dcmhw:hover {
    scale: 1
}

.banner_button__UA9qm img {
    height: 45px;
    margin-left: 3px;
    width: 45px
}

@media only screen and (max-width:1179px) {
    .banner_button__UA9qm {
        font-size: 40px;
        min-height: 84px;
        min-width: 290px
    }

    .banner_button__UA9qm:hover {
        scale: 1
    }

    .banner_button__UA9qm img {
        height: 50px;
        margin-left: 8px;
        width: 50px
    }
}

@media only screen and (max-width:1023px) {
    .banner_button__UA9qm {
        font-size: 20px;
        min-height: 42px;
        min-width: 145px
    }

    .banner_button__UA9qm img {
        height: 25px;
        margin-left: 2px;
        width: 25px
    }
}

.screenshot_section__T9Iyp {
    height: -moz-fit-content;
    height: fit-content;
    overflow: hidden;
    position: relative
}

.screenshot_container__JBJDk {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 45px 0 108px
}

@media only screen and (max-width:1179px) {
    .screenshot_container__JBJDk {
        padding: 90px 54px 156px 56px
    }
}

@media only screen and (max-width:767px) {
    .screenshot_container__JBJDk {
        padding: 45px 27px 78px 28px
    }
}

.screenshot_title_box__EN0pE {
    color: #fff;
    font-family: Bungee, cursive;
    font-size: 36px
}

@media only screen and (max-width:1179px) {
    .screenshot_title_box__EN0pE {
        font-size: 64px
    }
}

@media only screen and (max-width:767px) {
    .screenshot_title_box__EN0pE {
        font-size: 32px
    }
}

.screenshot_screenshot_box__SJ1Gk {
    border-radius: 15px;
    height: 629px;
    margin: 68px 0 0;
    overflow: hidden;
    width: 1120px !important
}

@media only screen and (max-width:1179px) {
    .screenshot_screenshot_box__SJ1Gk {
        height: -moz-fit-content;
        height: fit-content;
        margin: 72px 0 0;
        width: 90% !important
    }
}

@media only screen and (max-width:767px) {
    .screenshot_screenshot_box__SJ1Gk {
        margin: 36px 0 0
    }
}

.screenshot_screenshot__Mr45M {
    height: 629px;
    object-fit: cover;
    width: 1120px
}

@media only screen and (max-width:1179px) {
    .screenshot_screenshot__Mr45M {
        aspect-ratio: 320/180;
        height: auto;
        width: 100%
    }
}

.nft_section__aW-a8 {
    background-image: url(/img/juicy_nft_bg.e98ca4a5f1ff3db0b265.png);
    background-position: 50%;
    background-size: cover;
    position: relative
}

.nft_container__alPjf {
    display: flex;
    flex-direction: row;
    padding: 32px 0 14px
}

@media only screen and (max-width:1179px) {
    .nft_container__alPjf {
        align-items: center;
        flex-direction: column;
        padding: 64px 54px 120px 56px
    }
}

@media only screen and (max-width:767px) {
    .nft_container__alPjf {
        padding: 32px 27px 60px 28px
    }
}

.nft_character_box__IPgtX {
    height: 553px;
    width: 375px
}

@media only screen and (max-width:1179px) {
    .nft_character_box__IPgtX {
        height: 802px;
        width: 476px
    }
}

@media only screen and (max-width:767px) {
    .nft_character_box__IPgtX {
        height: 351px;
        width: 238px
    }
}

.nft_contents_box__VamuK {
    margin: 18px 0 0 203px
}

@media only screen and (max-width:1179px) {
    .nft_contents_box__VamuK {
        margin: 0
    }
}

.nft_title_box__2-2bn {
    color: #fff;
    font-family: Bungee, cursive;
    font-size: 36px;
    margin-top: 112px
}

@media only screen and (max-width:1179px) {
    .nft_title_box__2-2bn {
        font-size: 64px;
        margin-top: 28px;
        text-align: center
    }
}

@media only screen and (max-width:767px) {
    .nft_title_box__2-2bn {
        font-size: 32px;
        margin-top: 14px
    }
}

.nft_subtitle_box__MKI7Q {
    color: #fff;
    font-family: inter-light, sans-serif;
    font-size: 20px;
    margin-top: 15px
}

@media only screen and (max-width:1179px) {
    .nft_subtitle_box__MKI7Q {
        font-size: 28px;
        margin-top: 46px;
        text-align: center
    }
}

@media only screen and (max-width:767px) {
    .nft_subtitle_box__MKI7Q {
        font-size: 14px;
        margin-top: 23px
    }
}

.nft_button_box__xN6WR {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 71px
}

@media only screen and (max-width:1179px) {
    .nft_button_box__xN6WR {
        align-items: center;
        flex-direction: column;
        margin-top: 86px
    }
}

@media only screen and (max-width:767px) {
    .nft_button_box__xN6WR {
        margin-top: 43px
    }
}

.nft_button__tTVm8 {
    align-items: center;
    background: #fff;
    border-radius: 90px;
    color: #14284e;
    display: flex;
    font-family: Bungee, sans-serif;
    font-size: 24px;
    justify-content: center;
    line-height: 16px;
    min-height: 44px;
    min-width: 188px;
    transition: all .1s ease-in-out
}

.nft_button__tTVm8:hover {
    color: #14284e;
    scale: 1.1
}

.nft_button__tTVm8.nft_disabled__mZeY- {
    background: #afafaf;
    cursor: not-allowed
}

.nft_button__tTVm8.nft_disabled__mZeY-:hover {
    scale: 1
}

@media only screen and (max-width:1179px) {
    .nft_button__tTVm8 {
        font-size: 40px;
        min-height: 88px;
        min-width: 416px
    }

    .nft_button__tTVm8:hover {
        scale: 1
    }
}

@media only screen and (max-width:767px) {
    .nft_button__tTVm8 {
        font-size: 20px;
        min-height: 44px;
        min-width: 208px
    }
}

.nft_opensea_button__Ou6o3 {
    height: 44px;
    margin-left: 57px;
    transition: all .1s ease-in-out;
    width: 208px
}

.nft_opensea_button__Ou6o3:hover {
    color: #14284e;
    scale: 1.1
}

.nft_opensea_button__Ou6o3.nft_disabled__mZeY- {
    cursor: not-allowed
}

.nft_opensea_button__Ou6o3.nft_disabled__mZeY- img {
    filter: grayscale(100%) brightness(70%)
}

.nft_opensea_button__Ou6o3.nft_disabled__mZeY-:hover {
    scale: 1
}

@media only screen and (max-width:1179px) {
    .nft_opensea_button__Ou6o3 {
        height: 88px;
        margin-left: 0;
        margin-top: 30px;
        width: 416px
    }

    .nft_opensea_button__Ou6o3:hover {
        scale: 1
    }

    .nft_opensea_button__Ou6o3 img {
        object-fit: cover;
        width: 100%
    }
}

@media only screen and (max-width:767px) {
    .nft_opensea_button__Ou6o3 {
        height: 44px;
        margin-top: 15px;
        width: 208px
    }
}

.economy_section__5i1bG {
    position: relative
}

.economy_container__gXhT5 {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 45px 0 68px
}

@media only screen and (max-width:1179px) {
    .economy_container__gXhT5 {
        padding: 90px 54px 170px 56px
    }
}

@media only screen and (max-width:767px) {
    .economy_container__gXhT5 {
        padding: 45px 27px 85px 28px
    }
}

.economy_title_box__dRb6F {
    color: #fff;
    font-family: Bungee, cursive;
    font-size: 36px
}

@media only screen and (max-width:1179px) {
    .economy_title_box__dRb6F {
        font-size: 64px;
        text-align: center
    }
}

@media only screen and (max-width:767px) {
    .economy_title_box__dRb6F {
        font-size: 32px
    }
}

.economy_subtitle_box__4nrxU {
    color: #fff;
    font-family: Montserrat;
    font-size: 20px;
    margin-top: 15px
}

@media only screen and (max-width:1179px) {
    .economy_subtitle_box__4nrxU {
        font-size: 24px;
        margin-top: 30px;
        text-align: center
    }
}

@media only screen and (max-width:767px) {
    .economy_subtitle_box__4nrxU {
        font-size: 12px;
        margin-top: 15px
    }
}

.economy_content_box__yoqXR {
    margin-top: 48px
}

@media only screen and (max-width:1179px) {
    .economy_content_box__yoqXR {
        margin-top: 108px
    }
}

@media only screen and (max-width:767px) {
    .economy_content_box__yoqXR {
        margin-top: 54px
    }
}

.introduce_section__u3T\+U {
    position: relative
}

.introduce_container__sKhsn {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 45px 0 103px
}

@media only screen and (max-width:1179px) {
    .introduce_container__sKhsn {
        padding: 90px 54px 90px 56px
    }
}

@media only screen and (max-width:767px) {
    .introduce_container__sKhsn {
        padding: 45px 27px 45px 28px
    }
}

.introduce_title_box__L9jhV {
    color: #fff;
    font-family: Bungee, cursive;
    font-size: 36px
}

@media only screen and (max-width:1179px) {
    .introduce_title_box__L9jhV {
        font-size: 64px;
        line-height: 120%;
        text-align: center
    }
}

@media only screen and (max-width:767px) {
    .introduce_title_box__L9jhV {
        font-size: 32px
    }
}

.introduce_subtitle_box__FAcv4 {
    color: #fff;
    font-family: Montserrat;
    font-size: 20px;
    margin-top: 15px
}

@media only screen and (max-width:1179px) {
    .introduce_subtitle_box__FAcv4 {
        font-size: 24px;
        margin-top: 30px
    }
}

@media only screen and (max-width:767px) {
    .introduce_subtitle_box__FAcv4 {
        font-size: 12px;
        margin-top: 15px
    }
}

.introduce_content_box__X3YKA {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 65px
}

@media only screen and (max-width:1179px) {
    .introduce_content_box__X3YKA {
        flex-direction: column;
        margin-top: 62px;
        width: 100%
    }
}

.introduce_card__V-NS1 {
    flex: 0 0 273px;
    min-height: 440px
}

@media only screen and (max-width:1179px) {
    .introduce_card__V-NS1 {
        flex: 0 0 auto;
        width: 100%
    }
}

.card_card__6UYtI {
    border: 2px solid #e9e9e9;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    padding: 16px 13px 9px
}

.card_card__6UYtI:not(:last-child) {
    margin-right: 40px
}

@media only screen and (max-width:1179px) {
    .card_card__6UYtI {
        margin-right: 0;
        padding: 32px 30px 48px 26px
    }

    .card_card__6UYtI:not(:last-child) {
        margin-bottom: 54px;
        margin-right: 0
    }
}

.card_image_box__jUusW {
    border-radius: 13px;
    height: 100%;
    overflow: hidden;
    width: 100%
}

.card_image_box__jUusW img {
    height: 100%;
    object-fit: cover;
    width: 100%
}

.card_title_box__L4R8H {
    color: #fff;
    font-family: Bungee, sans-serif;
    font-size: 24px;
    line-height: 120%;
    margin-top: 18px;
    text-align: center
}

@media only screen and (max-width:1179px) {
    .card_title_box__L4R8H {
        font-size: 48px;
        margin-top: 36px
    }
}

@media only screen and (max-width:767px) {
    .card_title_box__L4R8H {
        font-size: 24px;
        margin-top: 18px
    }
}

.card_contents_box__wfQPL {
    color: #fff;
    font-family: Bungee, sans-serif;
    font-size: 12px;
    margin-top: 10px;
    text-align: center
}

@media only screen and (max-width:1179px) {
    .card_contents_box__wfQPL {
        font-size: 28px
    }
}

@media only screen and (max-width:767px) {
    .card_contents_box__wfQPL {
        font-size: 14px;
        margin-top: 5px
    }
}

.WaterMark_watermark_container__3E9FF {
    pointer-events: none
}

.WaterMark_watermark_lt__IgPbw {
    left: 10px;
    position: fixed;
    top: 10px;
    z-index: 10
}

.WaterMark_watermark_rb__suU4e {
    bottom: 10px;
    position: fixed;
    right: 10px;
    z-index: 10
}

.exchange_main__PBqph {
    border-top: 1px solid #191d311f;
    overflow: hidden;
    position: relative
}

.exchange_background__pSrXv {
    height: 1779px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 2310px;
    z-index: -1
}

@media only screen and (max-width:1179px) {
    .exchange_background__pSrXv {
        height: 100%;
        left: 0;
        top: 0;
        transform: translateX(0) translateY(0);
        width: 100%
    }
}

.exchange_pc_img__KYOnn {
    display: block
}

@media only screen and (max-width:1179px) {
    .exchange_pc_img__KYOnn {
        display: none
    }
}

.exchange_mobile_img__ouVSv {
    display: none;
    position: absolute
}

@media only screen and (max-width:1179px) {
    .exchange_mobile_img__ouVSv {
        display: block
    }
}

.exchange_mobile_img__ouVSv.exchange_mobile_img_1__lUhZf {
    left: 0;
    top: 0
}

.exchange_mobile_img__ouVSv.exchange_mobile_img_2__JbiDb {
    bottom: 0;
    left: 0
}

.exchange_mobile_img__ouVSv.exchange_mobile_img_3__emT1C {
    right: 0;
    top: 25%
}

.exchange_container__hsT9E {
    min-height: 1109px;
    padding: 83px 0 136px;
    text-align: center
}

@media only screen and (max-width:1179px) {
    .exchange_container__hsT9E {
        padding: 65px 0 69px
    }
}

.exchange_title__ChaYM {
    color: #11265b;
    font-family: poppins-bold, poppins, sans-serif;
    font-size: 64px;
    line-height: 96px
}

@media only screen and (max-width:1179px) {
    .exchange_title__ChaYM {
        font-size: 40px;
        line-height: normal;
        margin: 0 38px
    }
}

.exchange_content__CxJm2 {
    color: #11265b;
    font-size: 15px;
    line-height: 22px;
    margin-top: 10px
}

@media only screen and (max-width:1179px) {
    .exchange_content__CxJm2 {
        font-size: 15px;
        line-height: normal;
        margin: 19px 38px 0
    }
}

.exchange_exchange_empty_tap_container__TRNzM {
    background: #7546db42;
    border-radius: 25px 25px 0 0;
    margin: 48px auto 0;
    min-height: 86px;
    width: 743px
}

@media only screen and (max-width:1179px) {
    .exchange_exchange_empty_tap_container__TRNzM {
        margin: 38px 35px 0;
        width: auto
    }
}

.exchange_exchange_tap_container__D\+J3r {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 48px auto 0;
    width: 743px
}

.exchange_exchange_tap_container__D\+J3r .exchange_exchange_tap__vHuLs {
    background: #1a005242;
    color: #cbcbcb;
    cursor: pointer;
    flex: 1 0 auto;
    font-family: Bungee, sans-serif;
    font-size: 32px;
    padding: 19px 0
}

.exchange_exchange_tap_container__D\+J3r .exchange_exchange_tap__vHuLs.exchange_selected__O4l\+6 {
    background: #7546db42;
    color: #fff
}

.exchange_exchange_tap_container__D\+J3r .exchange_exchange_tap__vHuLs.exchange_disabled__z6OEZ {
    cursor: not-allowed
}

@media only screen and (max-width:1179px) {
    .exchange_exchange_tap_container__D\+J3r .exchange_exchange_tap__vHuLs {
        font-size: 13px;
        padding: 7px 0
    }
}

.exchange_exchange_tap_container__D\+J3r .exchange_exchange_tap__vHuLs:first-child {
    border-radius: 25px 0 0 0
}

.exchange_exchange_tap_container__D\+J3r .exchange_exchange_tap__vHuLs:last-child {
    border-radius: 0 25px 0 0
}

@media only screen and (max-width:1179px) {
    .exchange_exchange_tap_container__D\+J3r {
        margin: 38px 35px 0;
        width: auto
    }
}

.exchange_exchange_info_container__Vlzts {
    background: #7546db42;
    border-radius: 0 0 25px 25px;
    margin: 0 auto;
    padding: 57px 72px 32px;
    width: 743px
}

@media only screen and (max-width:1179px) {
    .exchange_exchange_info_container__Vlzts {
        margin: 0 35px;
        padding: 29px 22px 44px;
        width: auto
    }
}

.exchange_bridge_container__uIuAw {
    margin-top: 60px
}

@media only screen and (max-width:1179px) {
    .exchange_bridge_container__uIuAw {
        margin-top: 37px
    }
}

.exchange_bridge_container__uIuAw .exchange_bridge_btn__BcZsK {
    background: #14284e;
    border-radius: 11px;
    color: #fff;
    font-family: poppins-medium, sans-serif;
    font-size: 32px;
    padding: 11px 68px 12px 69px
}

@media only screen and (max-width:1179px) {
    .exchange_bridge_container__uIuAw .exchange_bridge_btn__BcZsK {
        font-size: 13px;
        padding: 11px 34px 12px 35px
    }
}

.exchange_exp__\+WnQm {
    color: #b4b4b4;
    font-family: poppins, sans-serif;
    font-size: 11px;
    font-style: normal;
    line-height: 16px;
    margin: 48px auto 0;
    text-align: left;
    width: 693px
}

@media only screen and (max-width:1179px) {
    .exchange_exp__\+WnQm {
        font-size: 10px;
        line-height: normal;
        margin: 33px 63px 0;
        text-align: center;
        width: auto
    }
}

.exchange_confirm_modal__D165R {
    border-radius: 20px !important;
    max-width: 448px !important;
    padding: 32px !important
}

@media only screen and (max-width:1179px) {
    .exchange_confirm_modal__D165R {
        padding: 29px 23px 36px !important
    }
}

.exchange_modal_title__fCRHO {
    color: #23262f;
    font-family: Bungee, sans-serif;
    font-size: 40px;
    line-height: 40px;
    text-align: left
}

@media only screen and (max-width:1179px) {
    .exchange_modal_title__fCRHO {
        font-size: 32px;
        line-height: normal
    }
}

.exchange_modal_content_box__zgt6m {
    margin-top: 32px
}

@media only screen and (max-width:1179px) {
    .exchange_modal_content_box__zgt6m {
        margin-top: 37px
    }
}

.exchange_modal_contents__agTkh {
    color: #23262f;
    font-size: 16px;
    line-height: 24px;
    white-space: pre-line
}

@media only screen and (max-width:1179px) {
    .exchange_modal_contents__agTkh {
        font-size: 10px;
        line-height: normal
    }
}

.exchange_modal_btn_container__QV\+lO {
    margin-top: 16px
}

@media only screen and (max-width:1179px) {
    .exchange_modal_btn_container__QV\+lO {
        margin-top: 37px
    }
}

.exchange_modal_btn_container__QV\+lO .exchange_modal_btn__OfNvj {
    background: #12265b;
    border-radius: 90px;
    color: #fff;
    padding: 16px 24px;
    transition: all .2s ease-in-out;
    width: 100%
}

.exchange_modal_btn_container__QV\+lO .exchange_modal_btn__OfNvj:hover {
    background: #32467b
}

.exchange_modal_btn_container__QV\+lO .exchange_modal_btn__OfNvj.exchange_error__msSAZ {
    background: #fee500;
    color: #23262f
}

.exchange_modal_btn_container__QV\+lO .exchange_modal_btn__OfNvj.exchange_error__msSAZ:hover {
    background: #fef530
}

@media only screen and (max-width:1179px) {
    .exchange_modal_btn_container__QV\+lO .exchange_modal_btn__OfNvj {
        font-size: 16px;
        padding: 6px 0
    }
}

.card_exchange_rate__8h3Ya {
    align-items: center;
    background: #11265b;
    border-radius: 50px;
    display: flex;
    height: 53px;
    justify-content: space-between;
    padding: 0 85px
}

@media only screen and (max-width:1179px) {
    .card_exchange_rate__8h3Ya {
        height: auto;
        padding: 4px 16px 3px 9px
    }
}

.card_exchange_rate_title__VeHJ3 {
    color: #fdefb2;
    flex: 0 0 auto;
    font-family: Bungee, sans-serif;
    font-size: 20px;
    font-style: normal;
    line-height: 30px;
    text-align: center
}

@media only screen and (max-width:1179px) {
    .card_exchange_rate_title__VeHJ3 {
        font-size: 10px;
        line-height: normal
    }
}

.card_exchange_rate_content__gzWws {
    color: #fff;
    flex: 0 0 auto;
    font-family: poppins-bold, poppins, sans-serif;
    font-size: 14px;
    line-height: 21px;
    text-align: center
}

.card_exchange_rate_content__gzWws span {
    font-size: 20px;
    line-height: 30px
}

@media only screen and (max-width:1179px) {

    .card_exchange_rate_content__gzWws,
    .card_exchange_rate_content__gzWws span {
        font-size: 10px;
        line-height: normal
    }
}

.card_volume__YIfzU {
    color: #fff;
    font-family: poppins, sans-serif;
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 2px;
    text-align: right
}

.card_volume__YIfzU:nth-child(2) {
    margin-top: 34px
}

@media only screen and (max-width:1179px) {
    .card_volume__YIfzU {
        margin-right: 14px
    }
}

.card_token_info_container__iu0cQ {
    background: #5458ad8a;
    border-radius: 20px;
    height: 112px;
    padding: 9px 35px 17px 24px
}

@media only screen and (max-width:1179px) {
    .card_token_info_container__iu0cQ {
        height: auto;
        min-height: 164px;
        padding: 17px 14px 13px 15px
    }
}

.card_token_info_container__iu0cQ .card_row__Of5h8 {
    align-items: center;
    color: #fff;
    display: flex;
    font-family: poppins-medium, sans-serif;
    font-size: 24px;
    justify-content: space-between;
    line-height: 36px
}

.card_token_info_container__iu0cQ .card_row__Of5h8:nth-child(2) {
    height: 55px
}

@media only screen and (max-width:1179px) {
    .card_token_info_container__iu0cQ .card_row__Of5h8 {
        flex-wrap: wrap
    }
}

.card_token_info_container__iu0cQ .card_from__vawQ\+ {
    color: #fff;
    font-family: Bungee, sans-serif;
    font-size: 20px;
    line-height: 30px
}

.card_token_info_container__iu0cQ .card_icon__d7O6D {
    height: 55px;
    width: 55px
}

@media only screen and (max-width:1179px) {
    .card_token_info_container__iu0cQ .card_icon__d7O6D {
        height: 51px;
        width: 51px
    }
}

.card_token_info_container__iu0cQ .card_symbol__iyNpB {
    flex: 0 0 100px;
    font-family: poppins-medium, sans-serif
}

@media only screen and (max-width:1179px) {
    .card_token_info_container__iu0cQ .card_symbol__iyNpB {
        flex: 1 0 auto;
        margin-left: 17px;
        text-align: left
    }
}

.card_token_info_container__iu0cQ .card_amount__wJ5XD {
    flex: 0 0 210px
}

.card_token_info_container__iu0cQ .card_amount__wJ5XD input {
    background: none;
    color: #fff;
    text-align: center;
    width: 210px
}

@media only screen and (max-width:1179px) {
    .card_token_info_container__iu0cQ .card_amount__wJ5XD {
        flex: 1 0 100%;
        margin-top: 12px;
        text-align: right
    }

    .card_token_info_container__iu0cQ .card_amount__wJ5XD input {
        text-align: right;
        width: 100%
    }
}

.card_token_info_container__iu0cQ .card_button__z1l8K {
    flex: 0 0 61px
}

.card_token_info_container__iu0cQ .card_button__z1l8K .card_max_button__FftmS {
    color: #fff;
    font-family: poppins-medium, sans-serif;
    font-size: 14px;
    height: 32px;
    line-height: 21px;
    text-align: center;
    width: 61px
}

@media only screen and (max-width:1179px) {
    .card_token_info_container__iu0cQ .card_button__z1l8K {
        display: none
    }

    .card_token_info_container__iu0cQ .card_button__z1l8K .card_max_button__FftmS {
        height: auto
    }
}

.card_token_info_container__iu0cQ .card_mobile_button__Kozsa {
    display: none
}

@media only screen and (max-width:1179px) {
    .card_token_info_container__iu0cQ .card_mobile_button__Kozsa {
        display: block
    }
}

.card_change_button_container__gamsa {
    margin-top: 18px
}

@media only screen and (max-width:1179px) {
    .card_change_button_container__gamsa {
        margin: 14px 0
    }
}

.card_change_button__yFquL {
    transition: all .3s ease-in-out
}

.card_change_button__yFquL:hover {
    transform: scale(1.1)
}

.card_exchange_button_container__dBG3n {
    margin-top: 41px
}

@media only screen and (max-width:1179px) {
    .card_exchange_button_container__dBG3n {
        margin-top: 62px
    }
}

.card_exchange_button__FNEsO {
    color: #fff;
    font-family: poppins-medium, sans-serif;
    font-size: 24px;
    font-style: normal;
    height: 49px;
    line-height: 36px;
    text-align: center;
    width: 220px
}

.card_exchange_button__FNEsO.card_disabled__0fq6B {
    background: #11265b80;
    cursor: default;
    pointer-events: none
}

@media only screen and (max-width:1179px) {
    .card_exchange_button__FNEsO {
        font-size: 20px;
        height: 36px;
        line-height: normal;
        padding: 0 36px;
        width: auto
    }
}

.card_check_modal__S7MAs {
    background: #fff;
    border-radius: 20px;
    text-align: center;
    width: 603px
}

.card_check_title__2p1Q8 {
    color: #11265b;
    font-family: Bungee, sans-serif;
    font-size: 40px;
    letter-spacing: -.01em;
    line-height: 40px;
    margin-bottom: 44px;
    text-align: left
}

@media only screen and (max-width:1179px) {
    .card_check_title__2p1Q8 {
        font-size: 32px
    }
}

.card_check_token_info_container__1UN0z {
    background: #5458ad;
    border-radius: 20px;
    height: 126px;
    padding: 18px 25px 14px 22px
}

@media only screen and (max-width:1179px) {
    .card_check_token_info_container__1UN0z {
        height: auto;
        padding: 18px 26px 19px 25px
    }
}

.card_check_token_info_container__1UN0z .card_mobile_row__M9Z6f {
    display: flex;
    flex: 1 0 auto
}

@media only screen and (max-width:1179px) {
    .card_check_token_info_container__1UN0z .card_mobile_row__M9Z6f {
        display: block;
        margin-left: 22px
    }
}

.card_check_token_info_container__1UN0z .card_row__Of5h8 {
    align-items: center;
    color: #fff;
    display: flex;
    font-family: poppins-medium, sans-serif;
    font-size: 24px;
    justify-content: space-between;
    line-height: 36px
}

.card_check_token_info_container__1UN0z .card_row__Of5h8:nth-child(2) {
    height: 55px
}

.card_check_token_info_container__1UN0z .card_from__vawQ\+ {
    color: #fff;
    font-family: Bungee, sans-serif;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 9px
}

@media only screen and (max-width:1179px) {
    .card_check_token_info_container__1UN0z .card_from__vawQ\+ {
        margin-bottom: 11px
    }
}

.card_check_token_info_container__1UN0z .card_icon__d7O6D {
    height: 55px;
    width: 55px
}

@media only screen and (max-width:1179px) {
    .card_check_token_info_container__1UN0z .card_icon__d7O6D {
        height: 51px;
        width: 51px
    }
}

.card_check_token_info_container__1UN0z .card_symbol__iyNpB {
    flex: 0 0 100px
}

@media only screen and (max-width:1179px) {
    .card_check_token_info_container__1UN0z .card_symbol__iyNpB {
        font-size: 15px;
        line-height: normal;
        text-align: left
    }
}

.card_check_token_info_container__1UN0z .card_amount__wJ5XD {
    flex: 1 0 auto;
    text-align: right
}

@media only screen and (max-width:1179px) {
    .card_check_token_info_container__1UN0z .card_amount__wJ5XD {
        font-size: 15px;
        line-height: normal;
        text-align: left
    }
}

.card_check_token_more_info_container__2U95W {
    margin: 0 18px 0 20px
}

@media only screen and (max-width:1179px) {
    .card_check_token_more_info_container__2U95W {
        margin: 34px 0
    }
}

.card_check_token_more_info_container__2U95W .card_check_token_more_info_row__rTajn {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: 10px
}

@media only screen and (max-width:1179px) {
    .card_check_token_more_info_container__2U95W .card_check_token_more_info_row__rTajn {
        margin: 9px
    }
}

.card_check_token_more_info_container__2U95W .card_check_token_more_info_label__YIUC7 {
    align-items: center;
    color: #11265b;
    display: flex;
    font-size: 16px;
    line-height: 24px
}

@media only screen and (max-width:1179px) {
    .card_check_token_more_info_container__2U95W .card_check_token_more_info_label__YIUC7 {
        font-size: 10px;
        line-height: normal
    }
}

.card_check_token_more_info_container__2U95W .card_check_token_more_info_value__Tdzeq {
    align-items: center;
    color: #11265b;
    display: flex;
    font-size: 16px;
    line-height: 24px;
    text-align: right
}

@media only screen and (max-width:1179px) {
    .card_check_token_more_info_container__2U95W .card_check_token_more_info_value__Tdzeq {
        font-size: 10px;
        line-height: normal
    }
}

.card_check_token_more_info_container__2U95W .card_check_token_more_info_value__Tdzeq .card_icon__d7O6D {
    height: 20px;
    margin-right: 10px;
    object-fit: cover;
    width: 20px
}

@media only screen and (max-width:1179px) {
    .card_check_token_more_info_container__2U95W .card_check_token_more_info_value__Tdzeq .card_icon__d7O6D {
        height: 15px;
        margin-right: 7px;
        width: 15px
    }
}

.card_check_change_button_container__\+k1kt {
    margin-bottom: -12px;
    margin-top: -12px
}

.card_check_exchange_button_container__0YAv7 {
    margin-top: 25px
}

@media only screen and (max-width:1179px) {
    .card_check_exchange_button_container__0YAv7 {
        margin: 53px 11px 0
    }
}

.card_check_exchange_button__0jexY {
    border-radius: 50px;
    color: #fff;
    font-family: poppins-medium, sans-serif;
    font-size: 24px;
    font-style: normal;
    height: 59px;
    line-height: 36px;
    text-align: center;
    width: 308px
}

.card_check_exchange_button__0jexY.card_disabled__0fq6B {
    background: #11265b80;
    cursor: default;
    pointer-events: none
}

@media only screen and (max-width:1179px) {
    .card_check_exchange_button__0jexY {
        font-size: 16px;
        height: 36px;
        line-height: normal;
        width: 100%
    }
}

.card_check_exchange_button__0jexY .card_loading__nNA6i {
    font-size: 30px;
    height: 30px;
    margin: 0 auto;
    width: 30px
}

.card_loading_container__S836q {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 498px
}

.card_loading_container__S836q .card_loading__nNA6i {
    color: #fff;
    font-size: 100px;
    height: 100px;
    margin: 0 auto;
    width: 100px
}

.staking_main__VMNtc {
    border-top: 1px solid #191d311f;
    overflow: hidden;
    position: relative
}

.staking_background__3mCFn {
    height: 2050px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translateX(-52%) translateY(-57%);
    width: 2310px;
    z-index: -1
}

@media only screen and (max-width:1179px) {
    .staking_background__3mCFn {
        height: 100%;
        left: 0;
        top: 0;
        transform: translateX(0) translateY(0);
        width: 100%
    }
}

.staking_pc_img__UamHU {
    display: block
}

@media only screen and (max-width:1179px) {
    .staking_pc_img__UamHU {
        display: none
    }
}

.staking_mobile_img__cHQKb {
    display: none;
    position: absolute
}

@media only screen and (max-width:1179px) {
    .staking_mobile_img__cHQKb {
        display: block
    }
}

.staking_mobile_img__cHQKb.staking_mobile_img_1__plUy5 {
    left: 0;
    top: 0
}

.staking_mobile_img__cHQKb.staking_mobile_img_2__iWdZ8 {
    right: 0;
    top: 15%
}

.staking_mobile_img__cHQKb.staking_mobile_img_3__G3dJW {
    bottom: 0;
    left: 0
}

.staking_container__f9PaB {
    min-height: 1735px;
    padding-top: 83px;
    text-align: center
}

@media only screen and (max-width:1179px) {
    .staking_container__f9PaB {
        padding-bottom: 83px;
        padding-top: 65px
    }
}

.staking_title__Kmy7S {
    color: #11265b;
    font-family: poppins-bold, poppins, sans-serif;
    font-size: 64px;
    line-height: 96px
}

@media only screen and (max-width:1179px) {
    .staking_title__Kmy7S {
        font-size: 40px;
        line-height: normal
    }
}

.staking_content__PWdhZ {
    color: #11265b;
    font-size: 15px;
    line-height: 22px;
    margin-top: 10px
}

@media only screen and (max-width:1179px) {
    .staking_content__PWdhZ {
        font-size: 15px;
        line-height: normal;
        margin-top: 13px
    }
}

.staking_staking_control_container__8Q0Lu {
    display: flex;
    justify-content: center;
    margin-top: 52px
}

@media only screen and (max-width:1179px) {
    .staking_staking_control_container__8Q0Lu {
        align-items: center;
        flex-direction: column;
        margin-top: 47px;
        padding: 0 38px
    }
}

.staking_staking_control_box__NaQ4P {
    background: #7546db42;
    border-radius: 20px;
    flex: 0 0 507px;
    padding: 27px 25px 23px
}

@media only screen and (max-width:1179px) {
    .staking_staking_control_box__NaQ4P {
        flex: 1 0 auto;
        margin-bottom: 41px;
        width: 100%
    }
}

.staking_staking_control_box__NaQ4P:last-child {
    margin-left: 50px
}

@media only screen and (max-width:1179px) {
    .staking_staking_control_box__NaQ4P:last-child {
        margin-bottom: 0;
        margin-left: 0
    }
}

.staking_staking_control_box__NaQ4P .staking_input_box__OZMb5 {
    background: #11265bd9;
    border-radius: 20px;
    padding: 13px 28px 16px 34px
}

@media only screen and (max-width:1179px) {
    .staking_staking_control_box__NaQ4P .staking_input_box__OZMb5 {
        padding: 11px 19px 14px 21px;
        position: relative
    }
}

.staking_staking_control_box__NaQ4P .staking_input_box__OZMb5 .staking_balance_row__kFJXA {
    display: flex;
    justify-content: end
}

@media only screen and (max-width:1179px) {
    .staking_staking_control_box__NaQ4P .staking_input_box__OZMb5 .staking_balance_row__kFJXA {
        position: absolute;
        right: 19px;
        top: 10px
    }
}

.staking_staking_control_box__NaQ4P .staking_input_box__OZMb5 .staking_balance_row__kFJXA .staking_balance__QcPPW {
    color: #04fab0;
    font-size: 15px;
    line-height: 22px;
    margin-right: 9px
}

@media only screen and (max-width:1179px) {
    .staking_staking_control_box__NaQ4P .staking_input_box__OZMb5 .staking_balance_row__kFJXA .staking_balance__QcPPW {
        font-size: 10px;
        line-height: normal;
        margin-right: 6px
    }
}

.staking_staking_control_box__NaQ4P .staking_input_box__OZMb5 .staking_balance_row__kFJXA .staking_max_button__JgaQ5 {
    background: #000e34;
    border-radius: 98px;
    color: #fff;
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    transition: all .1s ease-in-out;
    width: 61px
}

.staking_staking_control_box__NaQ4P .staking_input_box__OZMb5 .staking_balance_row__kFJXA .staking_max_button__JgaQ5:hover {
    background: #202e34
}

@media only screen and (max-width:1179px) {
    .staking_staking_control_box__NaQ4P .staking_input_box__OZMb5 .staking_balance_row__kFJXA .staking_max_button__JgaQ5 {
        font-size: 10px;
        line-height: normal;
        width: 50px
    }
}

.staking_staking_control_box__NaQ4P .staking_input_box__OZMb5 .staking_input_row__V9y7K {
    display: flex;
    margin-top: 23px
}

@media only screen and (max-width:1179px) {
    .staking_staking_control_box__NaQ4P .staking_input_box__OZMb5 .staking_input_row__V9y7K {
        flex-wrap: wrap;
        margin-top: 0
    }
}

.staking_staking_control_box__NaQ4P .staking_input_box__OZMb5 .staking_input_row__V9y7K .staking_icon__uducg {
    flex: 0 0 auto
}

.staking_staking_control_box__NaQ4P .staking_input_box__OZMb5 .staking_input_row__V9y7K .staking_icon__uducg img {
    height: 45px;
    object-fit: cover;
    width: 47px
}

@media only screen and (max-width:1179px) {
    .staking_staking_control_box__NaQ4P .staking_input_box__OZMb5 .staking_input_row__V9y7K .staking_icon__uducg {
        flex: 1 0 100%;
        text-align: left
    }
}

.staking_staking_control_box__NaQ4P .staking_input_box__OZMb5 .staking_input_row__V9y7K .staking_name__NbSoH {
    color: #fff;
    flex: 0 0 auto;
    font-family: Bungee, sans-serif;
    font-size: 24px;
    line-height: 36px;
    padding-left: 22px
}

@media only screen and (max-width:1179px) {
    .staking_staking_control_box__NaQ4P .staking_input_box__OZMb5 .staking_input_row__V9y7K .staking_name__NbSoH {
        flex: 0 0 auto;
        font-size: 20px;
        margin-top: 9px;
        padding-left: 0
    }
}

.staking_staking_control_box__NaQ4P .staking_input_box__OZMb5 .staking_input_row__V9y7K .staking_input__vfbqX {
    background: none;
    color: #fff;
    font-family: Bungee, sans-serif;
    font-size: 24px;
    line-height: 36px;
    padding-left: 22px;
    text-align: right;
    width: 255px
}

.staking_staking_control_box__NaQ4P .staking_input_box__OZMb5 .staking_input_row__V9y7K .staking_input__vfbqX::placeholder {
    color: #aaa
}

@media only screen and (max-width:1179px) {
    .staking_staking_control_box__NaQ4P .staking_input_box__OZMb5 .staking_input_row__V9y7K .staking_input__vfbqX {
        font-size: 20px;
        margin-top: 9px;
        padding-left: 0;
        width: 110px
    }
}

.staking_staking_control_box__NaQ4P .staking_info_box__3pT1U {
    margin-top: 18px;
    padding: 0 15px
}

@media only screen and (max-width:1179px) {
    .staking_staking_control_box__NaQ4P .staking_info_box__3pT1U {
        margin-top: 23px;
        padding: 0
    }
}

.staking_staking_control_box__NaQ4P .staking_info_box__3pT1U .staking_info_row__OuxRz {
    align-items: center;
    display: flex
}

.staking_staking_control_box__NaQ4P .staking_info_box__3pT1U .staking_info_row__OuxRz:not(:first-child) {
    margin-top: 15px
}

@media only screen and (max-width:1179px) {
    .staking_staking_control_box__NaQ4P .staking_info_box__3pT1U .staking_info_row__OuxRz:not(:first-child) {
        margin-top: 6px
    }
}

.staking_staking_control_box__NaQ4P .staking_info_box__3pT1U .staking_info_row__OuxRz .staking_label__d8dpU {
    align-items: center;
    color: #11265b;
    display: flex;
    flex: 1 0 auto;
    font-size: 16px;
    line-height: 24px
}

@media only screen and (max-width:1179px) {
    .staking_staking_control_box__NaQ4P .staking_info_box__3pT1U .staking_info_row__OuxRz .staking_label__d8dpU {
        font-size: 10px;
        line-height: normal
    }
}

.staking_staking_control_box__NaQ4P .staking_info_box__3pT1U .staking_info_row__OuxRz .staking_icon__uducg {
    flex: 0 0 auto;
    height: 26px;
    object-fit: cover;
    width: 26px
}

@media only screen and (max-width:1179px) {
    .staking_staking_control_box__NaQ4P .staking_info_box__3pT1U .staking_info_row__OuxRz .staking_icon__uducg {
        height: 20px;
        width: 20px
    }
}

.staking_staking_control_box__NaQ4P .staking_info_box__3pT1U .staking_info_row__OuxRz .staking_icon_base__QbFKT {
    flex: 0 0 auto;
    height: 29px;
    object-fit: cover;
    width: 22px
}

@media only screen and (max-width:1179px) {
    .staking_staking_control_box__NaQ4P .staking_info_box__3pT1U .staking_info_row__OuxRz .staking_icon_base__QbFKT {
        height: 23.2px;
        width: 17.6px
    }
}

.staking_staking_control_box__NaQ4P .staking_info_box__3pT1U .staking_info_row__OuxRz .staking_value__BKtrq {
    color: #11265b;
    flex: 0 0 auto;
    font-size: 16px;
    line-height: 24px;
    padding-left: 10px
}

@media only screen and (max-width:1179px) {
    .staking_staking_control_box__NaQ4P .staking_info_box__3pT1U .staking_info_row__OuxRz .staking_value__BKtrq {
        font-size: 10px;
        line-height: normal;
        padding-left: 4px
    }
}

.staking_staking_control_box__NaQ4P .staking_control_box__6xsDJ {
    margin-top: 21px
}

@media only screen and (max-width:1179px) {
    .staking_staking_control_box__NaQ4P .staking_control_box__6xsDJ {
        margin: 22px 48px 0
    }
}

.staking_staking_control_box__NaQ4P .staking_control_box__6xsDJ .staking_stake_button__BFYdx {
    background: #5458ad;
    border-radius: 50px;
    color: #fff;
    font-family: poppins-medium, sans-serif;
    font-size: 24px;
    height: 79px;
    line-height: 36px;
    text-align: center;
    transition: all .1s ease-in-out;
    width: 100%
}

.staking_staking_control_box__NaQ4P .staking_control_box__6xsDJ .staking_stake_button__BFYdx:hover {
    background: #6f73b8
}

.staking_staking_control_box__NaQ4P .staking_control_box__6xsDJ .staking_stake_button__BFYdx.staking_disabled__YOP4f {
    background: #5458ad80;
    cursor: default;
    pointer-events: none
}

@media only screen and (max-width:1179px) {
    .staking_staking_control_box__NaQ4P .staking_control_box__6xsDJ .staking_stake_button__BFYdx {
        font-size: 20px;
        height: 36px;
        line-height: normal
    }
}

.staking_staking_info_container__Ch6Xj {
    background: #7546db42;
    border-radius: 20px;
    margin: 52px auto 0;
    padding: 20px 26px 63px 25px;
    width: 1064px
}

@media only screen and (max-width:1179px) {
    .staking_staking_info_container__Ch6Xj {
        margin: 41px 38px 0;
        padding: 15px 22px 29px 21px;
        width: auto
    }
}

.staking_staking_info_container__Ch6Xj .staking_info_title__GG5JR {
    color: #11265b;
    font-family: Bungee, sans-serif;
    font-size: 24px;
    line-height: 36px;
    padding-left: 14px;
    text-align: left
}

.staking_staking_info_container__Ch6Xj .staking_info_exp__O--mL {
    color: #11265b;
    font-family: poppins-medium, sans-serif;
    font-size: 16px;
    line-height: 24px;
    padding-left: 14px;
    text-align: left
}

@media only screen and (max-width:1179px) {
    .staking_staking_info_container__Ch6Xj .staking_info_exp__O--mL {
        font-size: 10px;
        line-height: normal
    }
}

.staking_staking_info_container__Ch6Xj .staking_staking_info_row__Jf-f\+ {
    display: flex;
    margin-top: 30px
}

@media only screen and (max-width:1179px) {
    .staking_staking_info_container__Ch6Xj .staking_staking_info_row__Jf-f\+ {
        display: block;
        margin-top: 33px
    }
}

.staking_staking_info_container__Ch6Xj .staking_staking_info_upper_box__LVLrY {
    background: #11265bd9;
    border-radius: 20px;
    flex: 0 1 484px;
    padding: 30px 62px
}

@media only screen and (max-width:1179px) {
    .staking_staking_info_container__Ch6Xj .staking_staking_info_upper_box__LVLrY {
        flex: 1 0 auto;
        padding: 15px 19px 14px 15px
    }
}

.staking_staking_info_container__Ch6Xj .staking_staking_info_upper_box__LVLrY:last-child {
    margin-left: 40px
}

@media only screen and (max-width:1179px) {
    .staking_staking_info_container__Ch6Xj .staking_staking_info_upper_box__LVLrY:last-child {
        margin-left: 0;
        margin-top: 11px
    }
}

.staking_staking_info_container__Ch6Xj .staking_staking_info_upper_box__LVLrY .staking_staking_info_box_title__66j4N {
    align-items: center;
    display: flex;
    justify-content: left
}

.staking_staking_info_container__Ch6Xj .staking_staking_info_upper_box__LVLrY .staking_staking_info_box_title__66j4N .staking_icon__uducg {
    height: 26px;
    object-fit: cover;
    width: 26px
}

@media only screen and (max-width:1179px) {
    .staking_staking_info_container__Ch6Xj .staking_staking_info_upper_box__LVLrY .staking_staking_info_box_title__66j4N .staking_icon__uducg {
        height: 13.5px;
        width: 13.5px
    }
}

.staking_staking_info_container__Ch6Xj .staking_staking_info_upper_box__LVLrY .staking_staking_info_box_title__66j4N .staking_name__NbSoH {
    color: #fff;
    font-size: 20px;
    line-height: 24px;
    margin-left: 14px
}

@media only screen and (max-width:1179px) {
    .staking_staking_info_container__Ch6Xj .staking_staking_info_upper_box__LVLrY .staking_staking_info_box_title__66j4N .staking_name__NbSoH {
        font-size: 10px;
        line-height: normal;
        margin-left: 4px
    }
}

.staking_staking_info_container__Ch6Xj .staking_staking_info_upper_box__LVLrY .staking_staking_info_box_title__66j4N .staking_question_icon__DglHT {
    margin-left: 14px
}

@media only screen and (max-width:1179px) {
    .staking_staking_info_container__Ch6Xj .staking_staking_info_upper_box__LVLrY .staking_staking_info_box_title__66j4N .staking_question_icon__DglHT {
        margin-left: 4px
    }
}

.staking_staking_info_container__Ch6Xj .staking_staking_info_upper_box__LVLrY .staking_staking_info_box_value__ufNCh {
    margin-top: 44px;
    text-align: right
}

@media only screen and (max-width:1179px) {
    .staking_staking_info_container__Ch6Xj .staking_staking_info_upper_box__LVLrY .staking_staking_info_box_value__ufNCh {
        margin-top: 32px
    }
}

.staking_staking_info_container__Ch6Xj .staking_staking_info_upper_box__LVLrY .staking_staking_info_box_value__ufNCh .staking_value__BKtrq {
    color: #fff;
    font-family: Bungee, sans-serif;
    font-size: 32px;
    line-height: 39px
}

@media only screen and (max-width:1179px) {
    .staking_staking_info_container__Ch6Xj .staking_staking_info_upper_box__LVLrY .staking_staking_info_box_value__ufNCh .staking_value__BKtrq {
        font-size: 20px;
        line-height: normal
    }
}

.staking_staking_info_container__Ch6Xj .staking_staking_info_upper_box__LVLrY .staking_staking_info_box_value__ufNCh .staking_apy_value__NTjnT {
    color: #fff;
    font-family: Bungee, sans-serif;
    font-size: 48px;
    line-height: 58px;
    text-align: right
}

@media only screen and (max-width:1179px) {
    .staking_staking_info_container__Ch6Xj .staking_staking_info_upper_box__LVLrY .staking_staking_info_box_value__ufNCh .staking_apy_value__NTjnT {
        font-size: 20px;
        line-height: normal
    }
}

.staking_staking_info_container__Ch6Xj .staking_staking_info_lower_box__WziGE {
    background: #11265bd9;
    border-radius: 20px;
    margin-top: 32px;
    padding: 29px 59px
}

@media only screen and (max-width:1179px) {
    .staking_staking_info_container__Ch6Xj .staking_staking_info_lower_box__WziGE {
        margin-top: 11px;
        padding: 15px 19px 18px 15px
    }
}

.staking_staking_info_container__Ch6Xj .staking_staking_info_lower_box__WziGE .staking_staking_info_box_title__66j4N {
    align-items: center;
    display: flex;
    justify-content: left
}

.staking_staking_info_container__Ch6Xj .staking_staking_info_lower_box__WziGE .staking_staking_info_box_title__66j4N .staking_icon__uducg {
    height: 26px;
    object-fit: cover;
    width: 42px
}

@media only screen and (max-width:1179px) {
    .staking_staking_info_container__Ch6Xj .staking_staking_info_lower_box__WziGE .staking_staking_info_box_title__66j4N .staking_icon__uducg {
        height: 13px;
        width: 21px
    }
}

.staking_staking_info_container__Ch6Xj .staking_staking_info_lower_box__WziGE .staking_staking_info_box_title__66j4N .staking_name__NbSoH {
    color: #fff;
    font-size: 20px;
    line-height: 24px;
    margin-left: 7px
}

@media only screen and (max-width:1179px) {
    .staking_staking_info_container__Ch6Xj .staking_staking_info_lower_box__WziGE .staking_staking_info_box_title__66j4N .staking_name__NbSoH {
        font-size: 10px;
        line-height: normal;
        margin-left: 4px
    }
}

.staking_staking_info_container__Ch6Xj .staking_staking_info_lower_box__WziGE .staking_staking_info_box_title__66j4N .staking_question_icon__DglHT {
    margin-left: 14px
}

@media only screen and (max-width:1179px) {
    .staking_staking_info_container__Ch6Xj .staking_staking_info_lower_box__WziGE .staking_staking_info_box_title__66j4N .staking_question_icon__DglHT {
        margin-left: 4px
    }
}

.staking_staking_info_container__Ch6Xj .staking_staking_info_lower_box__WziGE .staking_staking_info_box_value__ufNCh,
.staking_staking_info_container__Ch6Xj .staking_staking_info_lower_box__WziGE .staking_staking_info_box_value_mobile__pqjh\+ {
    align-items: center;
    display: flex;
    justify-content: right;
    margin-top: -15px
}

.staking_staking_info_container__Ch6Xj .staking_staking_info_lower_box__WziGE .staking_staking_info_box_value__ufNCh .staking_minor_value__pq1QT,
.staking_staking_info_container__Ch6Xj .staking_staking_info_lower_box__WziGE .staking_staking_info_box_value_mobile__pqjh\+ .staking_minor_value__pq1QT {
    color: #fff;
    font-family: Bungee, sans-serif;
    font-size: 20px;
    line-height: 30px
}

@media only screen and (max-width:1179px) {

    .staking_staking_info_container__Ch6Xj .staking_staking_info_lower_box__WziGE .staking_staking_info_box_value__ufNCh .staking_minor_value__pq1QT,
    .staking_staking_info_container__Ch6Xj .staking_staking_info_lower_box__WziGE .staking_staking_info_box_value_mobile__pqjh\+ .staking_minor_value__pq1QT {
        flex: 0 1 auto;
        font-size: 12px;
        line-height: normal;
        text-align: right
    }
}

.staking_staking_info_container__Ch6Xj .staking_staking_info_lower_box__WziGE .staking_staking_info_box_value__ufNCh .staking_symbol__uDBCE,
.staking_staking_info_container__Ch6Xj .staking_staking_info_lower_box__WziGE .staking_staking_info_box_value_mobile__pqjh\+ .staking_symbol__uDBCE {
    color: #fff;
    font-family: Bungee, sans-serif;
    font-size: 20px;
    line-height: 30px;
    margin: 0 16px
}

@media only screen and (max-width:1179px) {

    .staking_staking_info_container__Ch6Xj .staking_staking_info_lower_box__WziGE .staking_staking_info_box_value__ufNCh .staking_symbol__uDBCE,
    .staking_staking_info_container__Ch6Xj .staking_staking_info_lower_box__WziGE .staking_staking_info_box_value_mobile__pqjh\+ .staking_symbol__uDBCE {
        font-size: 14px;
        line-height: normal;
        margin: 0 12px
    }
}

.staking_staking_info_container__Ch6Xj .staking_staking_info_lower_box__WziGE .staking_staking_info_box_value__ufNCh .staking_value__BKtrq,
.staking_staking_info_container__Ch6Xj .staking_staking_info_lower_box__WziGE .staking_staking_info_box_value_mobile__pqjh\+ .staking_value__BKtrq {
    color: #fff;
    font-family: Bungee, sans-serif;
    font-size: 32px;
    line-height: 48px
}

@media only screen and (max-width:1179px) {

    .staking_staking_info_container__Ch6Xj .staking_staking_info_lower_box__WziGE .staking_staking_info_box_value__ufNCh .staking_value__BKtrq,
    .staking_staking_info_container__Ch6Xj .staking_staking_info_lower_box__WziGE .staking_staking_info_box_value_mobile__pqjh\+ .staking_value__BKtrq {
        font-size: 17px;
        line-height: normal;
        text-align: right
    }
}

.staking_staking_info_container__Ch6Xj .staking_staking_info_lower_box__WziGE .staking_staking_info_box_value__ufNCh .staking_change_value__GP3Cb,
.staking_staking_info_container__Ch6Xj .staking_staking_info_lower_box__WziGE .staking_staking_info_box_value_mobile__pqjh\+ .staking_change_value__GP3Cb {
    color: #fa047f;
    font-family: Bungee, sans-serif;
    font-size: 32px;
    line-height: 39px
}

.staking_staking_info_container__Ch6Xj .staking_staking_info_lower_box__WziGE .staking_staking_info_box_value__ufNCh .staking_change_value__GP3Cb:not(:last-child),
.staking_staking_info_container__Ch6Xj .staking_staking_info_lower_box__WziGE .staking_staking_info_box_value_mobile__pqjh\+ .staking_change_value__GP3Cb:not(:last-child) {
    margin: 0 10px 0 17px
}

@media only screen and (max-width:1179px) {

    .staking_staking_info_container__Ch6Xj .staking_staking_info_lower_box__WziGE .staking_staking_info_box_value__ufNCh .staking_change_value__GP3Cb:not(:last-child),
    .staking_staking_info_container__Ch6Xj .staking_staking_info_lower_box__WziGE .staking_staking_info_box_value_mobile__pqjh\+ .staking_change_value__GP3Cb:not(:last-child) {
        flex: 0 0;
        font-size: 15px;
        margin: 0 6px 0 0;
        text-align: right
    }

    .staking_staking_info_container__Ch6Xj .staking_staking_info_lower_box__WziGE .staking_staking_info_box_value__ufNCh .staking_change_value__GP3Cb,
    .staking_staking_info_container__Ch6Xj .staking_staking_info_lower_box__WziGE .staking_staking_info_box_value_mobile__pqjh\+ .staking_change_value__GP3Cb {
        font-size: 20px;
        line-height: normal
    }

    .staking_staking_info_container__Ch6Xj .staking_staking_info_lower_box__WziGE .staking_staking_info_box_value__ufNCh .staking_change_value_pc__02fX5,
    .staking_staking_info_container__Ch6Xj .staking_staking_info_lower_box__WziGE .staking_staking_info_box_value_mobile__pqjh\+ .staking_change_value_pc__02fX5 {
        display: none
    }
}

.staking_staking_info_container__Ch6Xj .staking_staking_info_lower_box__WziGE .staking_staking_info_box_value__ufNCh .staking_down_value__YtJFq,
.staking_staking_info_container__Ch6Xj .staking_staking_info_lower_box__WziGE .staking_staking_info_box_value_mobile__pqjh\+ .staking_down_value__YtJFq {
    color: #04fab0
}

@media only screen and (max-width:1179px) {
    .staking_staking_info_container__Ch6Xj .staking_staking_info_lower_box__WziGE .staking_staking_info_box_value__ufNCh {
        margin-top: 0
    }
}

.staking_staking_info_container__Ch6Xj .staking_staking_info_lower_box__WziGE .staking_staking_info_box_value_mobile__pqjh\+ {
    display: none;
    margin-top: 8px;
    text-align: right
}

@media only screen and (max-width:1179px) {
    .staking_staking_info_container__Ch6Xj .staking_staking_info_lower_box__WziGE .staking_staking_info_box_value_mobile__pqjh\+ {
        display: block
    }
}

.staking_staking_info_container__Ch6Xj .staking_staking_info_lower_box__WziGE .staking_staking_info_saparator__zJCtW {
    border: 1px solid #677db7;
    margin: 11px 0 10px
}

.staking_staking_info_container__Ch6Xj .staking_staking_info_lower_box__WziGE .staking_staking_info_box_title_row__i5OH8 {
    display: flex;
    justify-content: space-between
}

.staking_staking_info_container__Ch6Xj .staking_staking_info_lower_box__WziGE .staking_staking_info_box_title_row__i5OH8 .staking_staking_info_box_title__66j4N .staking_icon__uducg {
    height: 26px;
    object-fit: cover;
    width: 26px
}

@media only screen and (max-width:1179px) {
    .staking_staking_info_container__Ch6Xj .staking_staking_info_lower_box__WziGE .staking_staking_info_box_title_row__i5OH8 .staking_staking_info_box_title__66j4N .staking_icon__uducg {
        height: 13.5px;
        width: 13.5px
    }

    .staking_staking_info_container__Ch6Xj .staking_staking_info_lower_box__WziGE .staking_staking_info_box_title_row__i5OH8 {
        display: block
    }
}

.staking_staking_info_container__Ch6Xj .staking_staking_info_lower_box__WziGE .staking_staking_info_box_value_col__qj-fT {
    display: block
}

@media only screen and (max-width:1179px) {
    .staking_staking_info_container__Ch6Xj .staking_staking_info_lower_box__WziGE .staking_staking_info_box_value_col__qj-fT:not(:first-child) {
        margin-top: 15px
    }
}

.staking_staking_info_container__Ch6Xj .staking_staking_info_lower_box__WziGE .staking_staking_info_box_value_col__qj-fT .staking_staking_info_box_value_amount__6pQvT {
    color: #fff;
    display: block;
    font-family: Bungee, sans-serif;
    font-size: 32px;
    margin-top: 16px;
    text-align: right
}

@media only screen and (max-width:1179px) {
    .staking_staking_info_container__Ch6Xj .staking_staking_info_lower_box__WziGE .staking_staking_info_box_value_col__qj-fT .staking_staking_info_box_value_amount__6pQvT {
        font-size: 20px;
        margin-top: 6px
    }
}

.staking_staking_info_container__Ch6Xj .staking_staking_info_lower_box__WziGE .staking_staking_info_box_value_col__qj-fT .staking_align_left__fd5ux {
    text-align: left
}

@media only screen and (max-width:1179px) {
    .staking_staking_info_container__Ch6Xj .staking_staking_info_lower_box__WziGE .staking_staking_info_box_value_col__qj-fT .staking_align_left__fd5ux {
        text-align: right
    }
}

.staking_exp_title__mLsF9 {
    color: #11265b;
    font-family: Bungee, sans-serif;
    font-size: 24px;
    line-height: 36px;
    margin: 93px 0 0 265px;
    text-align: left
}

@media only screen and (max-width:1179px) {
    .staking_exp_title__mLsF9 {
        font-size: 15px;
        line-height: normal;
        margin: 50px 0 0;
        text-align: center
    }
}

.staking_exp__yg-6j {
    color: #11265b;
    font-size: 15px;
    line-height: 22px;
    margin: 18px 0 0 280px;
    text-align: left;
    width: 895px
}

@media only screen and (max-width:1179px) {
    .staking_exp__yg-6j {
        font-size: 6px;
        line-height: normal;
        margin: 17px 38px 0;
        width: auto
    }
}

.staking_check_modal__0K2Rj {
    background: #dbcff6 !important
}

.staking_check_title__Umyfo {
    color: #11265b;
    font-family: Bungee, sans-serif;
    font-size: 40px;
    letter-spacing: -.01em;
    line-height: 40px;
    margin-bottom: 44px
}

@media only screen and (max-width:1179px) {
    .staking_check_title__Umyfo {
        font-size: 32px;
        line-height: normal;
        margin-bottom: 46px
    }
}

.staking_check_token_info_container__UzErZ {
    background: #12265bcc;
    border-radius: 20px;
    margin-top: 12px;
    padding: 19px 25px 20px
}

@media only screen and (max-width:1179px) {
    .staking_check_token_info_container__UzErZ {
        padding: 18px 26px 22px 22px
    }
}

.staking_check_token_info_container__UzErZ .staking_check_token_info_title__4FuZW {
    color: #fff;
    font-family: Bungee, sans-serif;
    font-size: 20px;
    line-height: 30px
}

@media only screen and (max-width:1179px) {
    .staking_check_token_info_container__UzErZ .staking_check_token_info_title__4FuZW {
        font-size: 20px;
        line-height: normal
    }
}

.staking_check_token_info_container__UzErZ .staking_mobile_row__wCIb\+ {
    display: flex;
    flex: 1 0 auto
}

@media only screen and (max-width:1179px) {
    .staking_check_token_info_container__UzErZ .staking_mobile_row__wCIb\+ {
        display: block;
        margin-left: 35px
    }
}

.staking_check_token_info_container__UzErZ .staking_row__bC3\+q {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-left: 7px;
    margin-top: 17px
}

.staking_check_token_info_container__UzErZ .staking_col__t3fZM {
    flex: 0 0 auto
}

.staking_check_token_info_container__UzErZ .staking_icon__uducg {
    height: 40px;
    object-fit: cover;
    width: 40px
}

.staking_check_token_info_container__UzErZ .staking_symbol__uDBCE {
    color: #fff;
    font-family: poppins-medium, sans-serif;
    font-size: 24px;
    line-height: 36px;
    padding: 0 25px
}

@media only screen and (max-width:1179px) {
    .staking_check_token_info_container__UzErZ .staking_symbol__uDBCE {
        font-size: 15px;
        line-height: normal;
        padding: 0;
        text-align: left
    }
}

.staking_check_token_info_container__UzErZ .staking_amount__LaGF- {
    color: #fff;
    flex: 1 0 auto;
    font-family: poppins-medium, sans-serif;
    font-size: 24px;
    line-height: 36px;
    text-align: right
}

@media only screen and (max-width:1179px) {
    .staking_check_token_info_container__UzErZ .staking_amount__LaGF- {
        font-size: 15px;
        line-height: normal;
        text-align: left
    }
}

.staking_check_token_more_info_container__Ct9Ux {
    margin: 0 18px 0 20px
}

@media only screen and (max-width:1179px) {
    .staking_check_token_more_info_container__Ct9Ux {
        margin: 34px 0
    }
}

.staking_check_token_more_info_container__Ct9Ux .staking_check_token_more_info_row__aRXbt {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: 10px
}

@media only screen and (max-width:1179px) {
    .staking_check_token_more_info_container__Ct9Ux .staking_check_token_more_info_row__aRXbt {
        margin: 9px
    }
}

.staking_check_token_more_info_container__Ct9Ux .staking_check_token_more_info_label__PW05V {
    align-items: center;
    color: #11265b;
    display: flex;
    font-size: 16px;
    line-height: 24px
}

@media only screen and (max-width:1179px) {
    .staking_check_token_more_info_container__Ct9Ux .staking_check_token_more_info_label__PW05V {
        font-size: 10px;
        line-height: normal
    }
}

.staking_check_token_more_info_container__Ct9Ux .staking_check_token_more_info_value__Nh0Vb {
    align-items: center;
    color: #11265b;
    display: flex;
    font-size: 16px;
    line-height: 24px;
    text-align: right
}

@media only screen and (max-width:1179px) {
    .staking_check_token_more_info_container__Ct9Ux .staking_check_token_more_info_value__Nh0Vb {
        font-size: 10px;
        line-height: normal
    }
}

.staking_check_token_more_info_container__Ct9Ux .staking_check_token_more_info_value__Nh0Vb .staking_icon_base__QbFKT {
    height: 29px;
    margin-right: 10px;
    object-fit: cover;
    width: 22px
}

@media only screen and (max-width:1179px) {
    .staking_check_token_more_info_container__Ct9Ux .staking_check_token_more_info_value__Nh0Vb .staking_icon_base__QbFKT {
        height: 15px;
        margin-right: 7px;
        width: 15px
    }
}

.staking_check_exchange_button_container__w-AzY {
    height: 59px;
    margin: 32px auto 0;
    width: 308px
}

@media only screen and (max-width:1179px) {
    .staking_check_exchange_button_container__w-AzY {
        height: 36px;
        padding: 0 11px;
        width: 100%
    }
}

.staking_check_exchange_button__V9nuB {
    background: #5458ad;
    border-radius: 50px;
    color: #fff;
    font-size: 24px;
    height: 100%;
    line-height: 36px;
    width: 100%
}

.staking_check_exchange_button__V9nuB.staking_disabled__YOP4f {
    background: #5458ad80;
    cursor: default;
    pointer-events: none
}

@media only screen and (max-width:1179px) {
    .staking_check_exchange_button__V9nuB {
        font-size: 16px;
        line-height: normal
    }
}

.staking_check_exchange_button__V9nuB .staking_loading__Y1oFK {
    font-size: 24px;
    height: 24px;
    margin: 0 auto;
    width: 24px
}

.staking_tooltip__4JFKC {
    background: #fff !important;
    border-radius: 15px;
    max-width: 208px
}

.staking_tooltip_text__5swea {
    color: #11265b;
    font-size: 10px;
    line-height: 15px
}

.staking_confirm_modal__vcAxJ {
    border-radius: 20px !important;
    max-width: 448px !important;
    padding: 32px !important
}

@media only screen and (max-width:1179px) {
    .staking_confirm_modal__vcAxJ {
        padding: 29px 23px 38px !important
    }
}

.staking_modal_title__Rxe91 {
    color: #23262f;
    font-family: Bungee, sans-serif;
    font-size: 32px;
    line-height: 40px;
    text-align: left
}

.staking_modal_content_box__TkW\+U {
    margin-top: 32px
}

.staking_modal_contents__4lYvG {
    color: #23262f;
    font-size: 16px;
    line-height: 24px;
    white-space: pre-line
}

@media only screen and (max-width:1179px) {
    .staking_modal_contents__4lYvG {
        font-size: 10px;
        line-height: normal
    }
}

.staking_modal_btn_container__qlShK {
    margin-top: 16px
}

@media only screen and (max-width:1179px) {
    .staking_modal_btn_container__qlShK {
        margin-top: 37px
    }
}

.staking_modal_btn_container__qlShK .staking_modal_btn__-W2D2 {
    background: #12265b;
    border-radius: 90px;
    color: #fff;
    font-family: poppins-medium, sans-serif;
    padding: 16px 24px;
    transition: all .2s ease-in-out;
    width: 100%
}

.staking_modal_btn_container__qlShK .staking_modal_btn__-W2D2:hover {
    background: #32467b
}

.staking_modal_btn_container__qlShK .staking_modal_btn__-W2D2.staking_error__0NGsd {
    background: #fee500;
    color: #23262f
}

.staking_modal_btn_container__qlShK .staking_modal_btn__-W2D2.staking_error__0NGsd:hover {
    background: #fef530
}

@media only screen and (max-width:1179px) {
    .staking_modal_btn_container__qlShK .staking_modal_btn__-W2D2 {
        font-size: 16px;
        line-height: normal;
        padding: 6px 0
    }
}

.UpArrow_up_arrow__M6USG {
    bottom: -100px;
    position: fixed;
    right: 10px;
    transition: all .3s ease-in-out;
    z-index: 1
}

.UpArrow_up_arrow__M6USG.UpArrow_showing__53rnn {
    bottom: 19px
}

.dashboard_section__mxPIv {
    overflow: hidden;
    padding: 105px 104px 130px;
    position: relative
}

@media only screen and (max-width:1440px) {
    .dashboard_section__mxPIv {
        padding: 40px 37px 121px 38px
    }
}

@media only screen and (max-width:767px) {
    .dashboard_section__mxPIv {
        padding: 20px 18px 60px
    }
}

.dashboard_background__KPbjS {
    left: 50%;
    position: absolute;
    top: -300px;
    transform: translateX(-52%);
    width: 2310px;
    z-index: -1
}

@media only screen and (max-width:1179px) {
    .dashboard_background__KPbjS {
        height: 100%;
        left: 0;
        top: 0;
        transform: translateX(0);
        width: 100%
    }
}

.dashboard_pc_img__aXbgd {
    display: block
}

@media only screen and (max-width:1179px) {
    .dashboard_pc_img__aXbgd {
        display: none
    }
}

.dashboard_mobile_img__\+xR43 {
    display: none;
    position: absolute
}

@media only screen and (max-width:1179px) {
    .dashboard_mobile_img__\+xR43 {
        display: block
    }
}

.dashboard_mobile_img__\+xR43.dashboard_mobile_img_1__fqN9U {
    left: 0;
    top: 0
}

.dashboard_mobile_img__\+xR43.dashboard_mobile_img_2__eOozB {
    right: 0;
    top: 15%
}

.dashboard_mobile_img__\+xR43.dashboard_mobile_img_3__XjxCi {
    bottom: 0;
    left: 0
}

.dashboard_container__WbQzA {
    background: #7546db42;
    border-radius: 27px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%
}

@media only screen and (max-width:1440px) {
    .dashboard_container__WbQzA {
        background: none
    }
}

.dashboard_menu_panel__Mqn15 {
    align-items: center;
    background: #fffc;
    border-radius: 27px 0 0 27px;
    display: flex;
    flex: 0 0 193px;
    flex-direction: column;
    justify-content: start;
    padding: 49px 37px
}

@media only screen and (max-width:1440px) {
    .dashboard_menu_panel__Mqn15 {
        display: none
    }
}

.dashboard_menu_panel__Mqn15 .dashboard_logo_box__LmI6s {
    height: 75px;
    width: 75px
}

.dashboard_menu_panel__Mqn15 .dashboard_menu_box__Y-dOR {
    margin-top: 25px
}

.dashboard_menu_panel__Mqn15 .dashboard_menu_box__Y-dOR .dashboard_menu_item__FVK5p {
    color: #595959;
    cursor: pointer;
    font-size: 20px;
    text-align: left
}

.dashboard_menu_panel__Mqn15 .dashboard_menu_box__Y-dOR .dashboard_menu_item__FVK5p.dashboard_selected__7Rxb0 {
    font-family: Bungee, sans-serif
}

.dashboard_detail_panel__7wUI1 {
    flex: 1 0;
    padding: 38px 33px 38px 27px
}

@media only screen and (max-width:1440px) {
    .dashboard_detail_panel__7wUI1 {
        padding: 0
    }
}

.dashboard_info_box__wbHyp {
    align-items: stretch;
    display: flex;
    flex-direction: row;
    justify-content: start
}

@media only screen and (max-width:1440px) {
    .dashboard_info_box__wbHyp {
        flex-direction: column-reverse
    }
}

.dashboard_info_box__wbHyp .dashboard_left_container__P\+XW8 {
    display: flex;
    flex: 651 0 651px;
    flex-direction: column
}

.dashboard_info_box__wbHyp .dashboard_left_container__P\+XW8 .dashboard_upper_container__U3bqR {
    flex: 1 0
}

@media only screen and (max-width:1440px) {
    .dashboard_info_box__wbHyp .dashboard_left_container__P\+XW8 .dashboard_upper_container__U3bqR {
        display: none
    }
}

.dashboard_info_box__wbHyp .dashboard_left_container__P\+XW8 .dashboard_upper_container__U3bqR .dashboard_welcome_box__GAWhL {
    border-radius: 27px;
    display: flex;
    flex-direction: column;
    height: 100%
}

.dashboard_info_box__wbHyp .dashboard_left_container__P\+XW8 .dashboard_upper_container__U3bqR .dashboard_welcome_box__GAWhL .dashboard_welcome_text__zcWNK {
    background: #ffffff80;
    border-radius: 27px 27px 0 0;
    color: #11265b;
    flex: 0 0 auto;
    font-family: poppins-bold, poppins, sans-serif;
    font-size: 16px;
    line-height: 40px;
    padding: 4px 23px
}

.dashboard_info_box__wbHyp .dashboard_left_container__P\+XW8 .dashboard_upper_container__U3bqR .dashboard_welcome_box__GAWhL .dashboard_welcome_my_info__CJRS- {
    background: #11265b80;
    border-radius: 0 0 27px 27px;
    flex: 1 0 auto;
    padding: 9px 23px
}

.dashboard_info_box__wbHyp .dashboard_left_container__P\+XW8 .dashboard_upper_container__U3bqR .dashboard_welcome_box__GAWhL .dashboard_welcome_my_info__CJRS- .dashboard_my_info_text__SkYJy {
    color: #fff;
    font-size: 16px;
    line-height: 40px
}

.dashboard_info_box__wbHyp .dashboard_left_container__P\+XW8 .dashboard_lower_container__zlk8j {
    flex: 0 0 461px;
    margin-top: 21px
}

@media only screen and (max-width:1440px) {
    .dashboard_info_box__wbHyp .dashboard_left_container__P\+XW8 .dashboard_lower_container__zlk8j {
        flex: 1 0 auto;
        margin-top: 18px
    }
}

.dashboard_info_box__wbHyp .dashboard_left_container__P\+XW8 .dashboard_lower_container__zlk8j .dashboard_card_container__kRzni {
    align-items: stretch;
    display: flex;
    flex: 0 0 50%;
    flex-direction: row;
    justify-content: center
}

.dashboard_info_box__wbHyp .dashboard_left_container__P\+XW8 .dashboard_lower_container__zlk8j .dashboard_card_container__kRzni:not(:last-child) {
    margin-bottom: 21px
}

@media only screen and (max-width:1440px) {
    .dashboard_info_box__wbHyp .dashboard_left_container__P\+XW8 .dashboard_lower_container__zlk8j .dashboard_card_container__kRzni {
        background: #11265b80;
        border-radius: 15px;
        flex: 1 0 auto;
        flex-direction: column
    }
}

.dashboard_info_box__wbHyp .dashboard_left_container__P\+XW8 .dashboard_lower_container__zlk8j .dashboard_card_container__kRzni .dashboard_info_card__ZF6Yy {
    background: #11265b80;
    border-radius: 27px;
    display: flex;
    flex-basis: calc(50% - 10.5px);
    flex-direction: column;
    flex-grow: 0;
    flex-shrink: 0;
    padding: 11px 23px 19px
}

@media only screen and (max-width:1440px) {
    .dashboard_info_box__wbHyp .dashboard_left_container__P\+XW8 .dashboard_lower_container__zlk8j .dashboard_card_container__kRzni .dashboard_info_card__ZF6Yy {
        background: none;
        flex: 1 0 auto;
        padding: 11px 22px 28px
    }
}

.dashboard_info_box__wbHyp .dashboard_left_container__P\+XW8 .dashboard_lower_container__zlk8j .dashboard_card_container__kRzni .dashboard_info_card__ZF6Yy:not(:last-child) {
    margin-right: 21px
}

@media only screen and (max-width:1440px) {
    .dashboard_info_box__wbHyp .dashboard_left_container__P\+XW8 .dashboard_lower_container__zlk8j .dashboard_card_container__kRzni .dashboard_info_card__ZF6Yy:not(:last-child) {
        margin-right: 0
    }
}

.dashboard_info_box__wbHyp .dashboard_left_container__P\+XW8 .dashboard_lower_container__zlk8j .dashboard_card_container__kRzni .dashboard_info_card__ZF6Yy .dashboard_upper_box__B02qq {
    display: flex;
    flex-direction: row;
    justify-content: space-between
}

.dashboard_info_box__wbHyp .dashboard_left_container__P\+XW8 .dashboard_lower_container__zlk8j .dashboard_card_container__kRzni .dashboard_info_card__ZF6Yy .dashboard_lower_box__7Zhpa {
    display: flex;
    flex: 1 1;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 9px
}

.dashboard_info_box__wbHyp .dashboard_left_container__P\+XW8 .dashboard_lower_container__zlk8j .dashboard_card_container__kRzni .dashboard_info_card__ZF6Yy .dashboard_my_staking_button__UDBWX,
.dashboard_info_box__wbHyp .dashboard_left_container__P\+XW8 .dashboard_lower_container__zlk8j .dashboard_card_container__kRzni .dashboard_info_card__ZF6Yy .dashboard_title_text__MPmrN {
    color: #fff;
    font-family: poppins-bold, poppins, sans-serif;
    font-size: 16px;
    line-height: 40px
}

.dashboard_info_box__wbHyp .dashboard_left_container__P\+XW8 .dashboard_lower_container__zlk8j .dashboard_card_container__kRzni .dashboard_info_card__ZF6Yy .dashboard_my_staking_balance_box__f-l07 {
    align-items: center;
    background: #fff;
    border-radius: 15px;
    display: flex;
    flex-direction: row;
    margin-top: 28px;
    padding: 1px 21px 1px 6px
}

.dashboard_info_box__wbHyp .dashboard_left_container__P\+XW8 .dashboard_lower_container__zlk8j .dashboard_card_container__kRzni .dashboard_info_card__ZF6Yy .dashboard_my_staking_balance_box__f-l07:not(:first-child) {
    margin-top: 16px
}

.dashboard_info_box__wbHyp .dashboard_left_container__P\+XW8 .dashboard_lower_container__zlk8j .dashboard_card_container__kRzni .dashboard_info_card__ZF6Yy .dashboard_my_staking_balance_box__f-l07 .dashboard_my_staking_balance_icon_box__AMuLA {
    height: 55px;
    margin-right: 10px;
    width: 55px
}

.dashboard_info_box__wbHyp .dashboard_left_container__P\+XW8 .dashboard_lower_container__zlk8j .dashboard_card_container__kRzni .dashboard_info_card__ZF6Yy .dashboard_my_staking_balance_box__f-l07 .dashboard_loading_box__tQMz0 {
    align-items: center;
    display: flex;
    flex: 1 0;
    justify-content: center
}

.dashboard_info_box__wbHyp .dashboard_left_container__P\+XW8 .dashboard_lower_container__zlk8j .dashboard_card_container__kRzni .dashboard_info_card__ZF6Yy .dashboard_my_staking_balance_box__f-l07 .dashboard_loading_box__tQMz0 .dashboard_loading__ZiQob {
    color: #7554d642;
    font-size: 34px;
    height: 34px;
    width: 34px
}

.dashboard_info_box__wbHyp .dashboard_left_container__P\+XW8 .dashboard_lower_container__zlk8j .dashboard_card_container__kRzni .dashboard_info_card__ZF6Yy .dashboard_my_staking_balance_box__f-l07 .dashboard_my_staking_balance_value__-2X5r {
    color: #11265b;
    flex: 1 0;
    font-family: poppins-bold, poppins, sans-serif;
    font-size: 20px;
    text-align: right
}

.dashboard_info_box__wbHyp .dashboard_left_container__P\+XW8 .dashboard_lower_container__zlk8j .dashboard_card_container__kRzni .dashboard_info_card__ZF6Yy .dashboard_my_staking_balance_box__f-l07 .dashboard_my_staking_balance_text__P\+gsk {
    color: #11265b;
    flex: 0 0 50px;
    font-family: Bungee, sans-serif;
    font-size: 14px;
    margin-left: 8px;
    padding-top: 8px
}

.dashboard_info_box__wbHyp .dashboard_left_container__P\+XW8 .dashboard_lower_container__zlk8j .dashboard_card_container__kRzni .dashboard_info_card__ZF6Yy .dashboard_price_card_box__aUJbc {
    align-items: center;
    display: flex;
    flex: 0 0 50%;
    flex-direction: row;
    justify-content: space-between;
    padding: 6px 18px
}

@media only screen and (max-width:1440px) {
    .dashboard_info_box__wbHyp .dashboard_left_container__P\+XW8 .dashboard_lower_container__zlk8j .dashboard_card_container__kRzni .dashboard_info_card__ZF6Yy .dashboard_price_card_box__aUJbc {
        padding: 6px 10px
    }
}

.dashboard_info_box__wbHyp .dashboard_left_container__P\+XW8 .dashboard_lower_container__zlk8j .dashboard_card_container__kRzni .dashboard_info_card__ZF6Yy .dashboard_price_card_box__aUJbc .dashboard_price_card__gIOk- {
    flex: 0 0 50%
}

.dashboard_info_box__wbHyp .dashboard_left_container__P\+XW8 .dashboard_lower_container__zlk8j .dashboard_card_container__kRzni .dashboard_info_card__ZF6Yy .dashboard_price_card_box__aUJbc .dashboard_price_card__gIOk- .dashboard_price_title__CjJNK {
    color: #fff;
    font-size: 12px
}

.dashboard_info_box__wbHyp .dashboard_left_container__P\+XW8 .dashboard_lower_container__zlk8j .dashboard_card_container__kRzni .dashboard_info_card__ZF6Yy .dashboard_price_card_box__aUJbc .dashboard_price_card__gIOk- .dashboard_price_title__CjJNK img {
    height: 16.5px;
    width: 16.5px
}

.dashboard_info_box__wbHyp .dashboard_left_container__P\+XW8 .dashboard_lower_container__zlk8j .dashboard_card_container__kRzni .dashboard_info_card__ZF6Yy .dashboard_price_card_box__aUJbc .dashboard_price_card__gIOk- .dashboard_price_text__LAMqg {
    color: #fff;
    font-family: poppins-bold, poppins, sans-serif;
    font-size: 14px;
    margin-top: 5px;
    padding-left: 10px
}

.dashboard_info_box__wbHyp .dashboard_left_container__P\+XW8 .dashboard_lower_container__zlk8j .dashboard_card_container__kRzni .dashboard_info_card__ZF6Yy .dashboard_apy_box__auaNr {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: space-between
}

.dashboard_info_box__wbHyp .dashboard_left_container__P\+XW8 .dashboard_lower_container__zlk8j .dashboard_card_container__kRzni .dashboard_info_card__ZF6Yy .dashboard_apy_box__auaNr .dashboard_apy_value_box__ddkPd,
.dashboard_info_box__wbHyp .dashboard_left_container__P\+XW8 .dashboard_lower_container__zlk8j .dashboard_card_container__kRzni .dashboard_info_card__ZF6Yy .dashboard_apy_box__auaNr .dashboard_title_text__MPmrN {
    color: #fff;
    font-family: poppins-bold, poppins, sans-serif;
    font-size: 16px;
    line-height: 40px
}

.dashboard_info_box__wbHyp .dashboard_left_container__P\+XW8 .dashboard_lower_container__zlk8j .dashboard_card_container__kRzni .dashboard_info_card__ZF6Yy .dashboard_contents_text__tiduo {
    color: #fff;
    font-family: Bungee, sans-serif;
    font-size: 16px;
    line-height: 20px;
    text-align: right
}

.dashboard_info_box__wbHyp .dashboard_right_container__155sC {
    flex: 291 0 291px
}

.dashboard_info_box__wbHyp .dashboard_right_container__155sC .dashboard_welcome_box_mobile__OtG7d {
    display: none;
    flex-direction: column
}

@media only screen and (max-width:1440px) {
    .dashboard_info_box__wbHyp .dashboard_right_container__155sC .dashboard_welcome_box_mobile__OtG7d {
        display: flex
    }
}

.dashboard_info_box__wbHyp .dashboard_right_container__155sC .dashboard_welcome_box_mobile__OtG7d .dashboard_welcome_text__zcWNK {
    background: #ffffff80;
    border-radius: 15px 15px 0 0;
    color: #11265b;
    flex: 0 0 auto;
    font-family: poppins-bold, poppins, sans-serif;
    font-size: 16px;
    line-height: 40px;
    padding: 4px 23px
}

@media only screen and (max-width:767px) {
    .dashboard_info_box__wbHyp .dashboard_right_container__155sC .dashboard_welcome_box_mobile__OtG7d .dashboard_welcome_text__zcWNK {
        letter-spacing: -.16px
    }
}

.dashboard_info_box__wbHyp .dashboard_right_container__155sC .dashboard_welcome_box_mobile__OtG7d .dashboard_welcome_my_info__CJRS- {
    background: #11265b80;
    flex: 1 0 auto;
    padding: 9px 23px
}

.dashboard_info_box__wbHyp .dashboard_right_container__155sC .dashboard_welcome_box_mobile__OtG7d .dashboard_welcome_my_info__CJRS- .dashboard_my_info_text__SkYJy {
    color: #fff;
    font-size: 16px
}

@media only screen and (max-width:767px) {
    .dashboard_info_box__wbHyp .dashboard_right_container__155sC .dashboard_welcome_box_mobile__OtG7d .dashboard_welcome_my_info__CJRS- .dashboard_my_info_text__SkYJy {
        font-size: 12px;
        letter-spacing: -.84px
    }
}

.dashboard_info_box__wbHyp .dashboard_right_container__155sC .dashboard_profile_box__5UovL {
    background: #11265b80;
    border-radius: 27px;
    margin-left: 21px;
    padding: 28px 17px 31px
}

@media only screen and (max-width:1440px) {
    .dashboard_info_box__wbHyp .dashboard_right_container__155sC .dashboard_profile_box__5UovL {
        border-radius: 0 0 15px 15px;
        margin-left: 0
    }
}

@media only screen and (max-width:767px) {
    .dashboard_info_box__wbHyp .dashboard_right_container__155sC .dashboard_profile_box__5UovL {
        padding: 16px 22px 31px 21px
    }
}

.dashboard_info_box__wbHyp .dashboard_right_container__155sC .dashboard_profile_box__5UovL .dashboard_address_container__vs\+ma {
    text-align: right
}

.dashboard_info_box__wbHyp .dashboard_right_container__155sC .dashboard_profile_box__5UovL .dashboard_address_container__vs\+ma .dashboard_address_box__g77xp {
    background: #14284e;
    border-radius: 90px;
    color: #fcfcfd;
    display: inline-block;
    font-family: poppins-bold, poppins, sans-serif;
    font-size: 14px;
    padding: 12px 16px;
    text-align: center
}

.dashboard_info_box__wbHyp .dashboard_right_container__155sC .dashboard_profile_box__5UovL .dashboard_avatar_box__O-mdr {
    background: #d9d9d9;
    border-radius: 50%;
    height: 158px;
    margin: 33px auto 0;
    width: 158px
}

@media only screen and (max-width:767px) {
    .dashboard_info_box__wbHyp .dashboard_right_container__155sC .dashboard_profile_box__5UovL .dashboard_avatar_box__O-mdr {
        margin: 30px auto 19px
    }
}

.dashboard_info_box__wbHyp .dashboard_right_container__155sC .dashboard_profile_box__5UovL .dashboard_balance_container__A5S7p {
    margin-top: 30px;
    max-height: 401px;
    overflow-y: auto;
    padding-right: 11px
}

.dashboard_info_box__wbHyp .dashboard_right_container__155sC .dashboard_profile_box__5UovL .dashboard_balance_container__A5S7p::-webkit-scrollbar {
    width: 5px
}

.dashboard_info_box__wbHyp .dashboard_right_container__155sC .dashboard_profile_box__5UovL .dashboard_balance_container__A5S7p::-webkit-scrollbar-track {
    background: #c5c5c5;
    border-radius: 2px
}

.dashboard_info_box__wbHyp .dashboard_right_container__155sC .dashboard_profile_box__5UovL .dashboard_balance_container__A5S7p::-webkit-scrollbar-thumb {
    background: #9b9b9b;
    border-radius: 2px
}

.dashboard_info_box__wbHyp .dashboard_right_container__155sC .dashboard_profile_box__5UovL .dashboard_balance_container__A5S7p .dashboard_title_box__x\+N3K {
    color: #fff;
    font-size: 12px;
    margin-top: 13px
}

.dashboard_info_box__wbHyp .dashboard_right_container__155sC .dashboard_profile_box__5UovL .dashboard_balance_container__A5S7p .dashboard_balance_box__7X4RM {
    align-items: center;
    background: #fff;
    border-radius: 15px;
    display: flex;
    flex-direction: row;
    margin-top: 15px;
    padding: 3.5px 15px 3.5px 8px
}

.dashboard_info_box__wbHyp .dashboard_right_container__155sC .dashboard_profile_box__5UovL .dashboard_balance_container__A5S7p .dashboard_balance_box__7X4RM .dashboard_token_icon__BH7P7 {
    height: 55px;
    width: 55px
}

.dashboard_info_box__wbHyp .dashboard_right_container__155sC .dashboard_profile_box__5UovL .dashboard_balance_container__A5S7p .dashboard_balance_box__7X4RM .dashboard_balance_amount__-y4fv {
    color: #11265b;
    flex: 1 0;
    font-family: poppins-bold, poppins, sans-serif;
    font-size: 20px;
    text-align: right
}

.dashboard_info_box__wbHyp .dashboard_right_container__155sC .dashboard_profile_box__5UovL .dashboard_balance_container__A5S7p .dashboard_balance_box__7X4RM .dashboard_loading_box__tQMz0 {
    align-items: center;
    display: flex;
    flex: 1 0;
    justify-content: center
}

.dashboard_info_box__wbHyp .dashboard_right_container__155sC .dashboard_profile_box__5UovL .dashboard_balance_container__A5S7p .dashboard_balance_box__7X4RM .dashboard_loading_box__tQMz0 .dashboard_loading__ZiQob {
    color: #7554d642;
    font-size: 34px;
    height: 34px;
    width: 34px
}

.dashboard_info_box__wbHyp .dashboard_right_container__155sC .dashboard_profile_box__5UovL .dashboard_balance_container__A5S7p .dashboard_balance_box__7X4RM .dashboard_balance_text__RyoCW {
    color: #11265b;
    flex: 0 0 50px;
    font-family: Bungee, sans-serif;
    font-size: 14px;
    margin: 8px 0 0 8px
}

.dashboard_chart_box__KWG4h {
    height: 220px;
    padding: 13px 12px 0;
    position: relative;
    width: 100%
}

@media only screen and (max-width:1440px) {
    .dashboard_chart_box__KWG4h {
        height: 180px;
        padding: 5px 9px 0
    }
}

@media only screen and (max-width:767px) {
    .dashboard_chart_box__KWG4h {
        height: 150px
    }
}

.dashboard_chart_box__KWG4h .dashboard_chart__TE9CM {
    height: 100% !important;
    left: 0;
    position: absolute;
    top: 0;
    width: 100% !important
}

.tokeImage_symbol_container__qJiVt {
    display: block;
    position: relative
}

.tokeImage_chain__Re1Mr,
.tokeImage_symbol__ClrFj {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.tokeImage_chain__Re1Mr {
    z-index: 1
}

/*# sourceMappingURL=main.179016c9.css.map*/