@keyframes react-loading-skeleton {
    to {
        transform: translate(100%)
    }
}

.react-loading-skeleton {
    --base-color: #ebebeb;
    --highlight-color: #f5f5f5;
    --animation-duration: 1.5s;
    --animation-direction: normal;
    --pseudo-element-display: block;
    background-color: var(--base-color);
    width: 100%;
    border-radius: .25rem;
    display: inline-flex;
    line-height: 1;
    position: relative;
    -webkit-user-select: none;
    user-select: none;
    overflow: hidden
}

.react-loading-skeleton:after {
    content: " ";
    display: var(--pseudo-element-display);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-repeat: no-repeat;
    background-image: var(--custom-highlight-background, linear-gradient(90deg, var(--base-color) 0%, var(--highlight-color) 50%, var(--base-color) 100%));
    transform: translate(-100%);
    animation-name: react-loading-skeleton;
    animation-direction: var(--animation-direction);
    animation-duration: var(--animation-duration);
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite
}

@media (prefers-reduced-motion) {
    .react-loading-skeleton {
        --pseudo-element-display: none
    }
}

._toggleButtonContainer_ov370_1 {
    display: flex;
    width: 100%;
    position: relative;
    overflow: hidden
}

._toggleButton_ov370_1 {
    font-size: 12px;
    font-weight: 500;
    line-height: 24px;
    position: absolute;
    flex: 1;
    padding: 4px 0;
    border: none;
    cursor: pointer;
    background-color: var(--button-bg);
    color: var(--togglebutton-color);
    position: relative;
    z-index: 1
}

._toggleButton_ov370_1:nth-child(1) {
    margin-left: -8px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 100%, 23% 5%, 26% 0%);
    border-radius: 4px
}

._toggleButton_ov370_1:nth-child(2) {
    margin-right: -8px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 77% 95%, 74% 100%, 0% 100%, 0% 100%);
    border-radius: 4px
}

._toggleButton_ov370_1 ._sellBtn_ov370_32 {
    margin-right: 8px
}

._activeBuy_ov370_36 {
    background-color: var(--buy-color-transparent);
    color: var(--buy-color)
}

._activeSell_ov370_41 {
    background-color: var(--sell-color-transparent);
    color: var(--sell-color)
}

._tradeInput_1w2k5_1 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    flex-shrink: 0;
    flex-grow: 0;
    width: 100%;
    padding: 4px 8px;
    height: 40px;
    background-color: var(--input-bg);
    color: var(--input-color);
    border-radius: 4px;
    border-bottom: 1px solid transparent;
    transition: border-color .3s
}

._tradeInput_1w2k5_1:focus-within {
    border-color: var(--input-border-bottom)
}

._tradeInput_1w2k5_1._error_1w2k5_21 {
    border-color: var(--sell-color)
}

._errorContainer_1w2k5_25 {
    font-size: 9px;
    font-weight: 400;
    line-height: 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    flex-shrink: 0;
    flex-grow: 0;
    padding: 0;
    margin: 0;
    color: var(--input-color-error)
}

._errorContainer_1w2k5_25>*:not(:first-child) {
    margin-right: 2px
}

._inputContainer_1w2k5_44 {
    position: relative;
    width: 100%
}

._inputContainer_1w2k5_44 ._clearBtn_1w2k5_48 {
    color: var(--searchInput-icon-color);
    position: absolute;
    left: 0;
    top: 25%;
    cursor: pointer
}

._input_1w2k5_44 {
    background-color: var(--input-bg);
    color: var(--input-color);
    direction: ltr;
    border: none;
    height: 32px;
    width: 100%
}

._input_1w2k5_44::placeholder {
    color: var(--input-placeholder-color)
}

._input_1w2k5_44:focus {
    outline: none
}

._preFix_1w2k5_71 {
    flex-shrink: 0;
    color: var(--input-color);
    font-size: 11px;
    font-weight: 400;
    line-height: 20px
}

:root {
    --bottomsheet-animation: cubic-bezier(.4, 0, .2, 1);
    --tab-bg: #222;
    --tab-color: #b2b2b2;
    --tab-color-active: #fff;
    --tab-border-bottom: #666;
    --icon-color: #e1e1e1;
    --buy-color: #4ef09d;
    --buy-color-btn: #4ef09d;
    --buy-color-font: #1a1a1a;
    --buy-color-transparent: #0159454d;
    --sell-color: #ff5a5a;
    --sell-color-transparent: #ff5a5a33;
    --background: #1a1a1a;
    --main-background: #1a1a1a;
    --title-color: #fff;
    --button-bg: #333;
    --button-color: #666;
    --togglebutton-color: #d8d8d8;
    --input-bg: #222;
    --input-color: #fff;
    --input-placeholder-color: #666;
    --input-color-error: #ff5a5a;
    --input-postfix-color: #666;
    --input-icon-color: #d8d8d8;
    --input-icon-color-deactive: #666;
    --input-divider: #666;
    --input-border-bottom: #666;
    --input-disabled-color: #666;
    --approximation-color: #b2b2b2;
    --buttongroup-bg: rgba(51, 51, 51, .3);
    --buttongroup-color: #d8d8d8;
    --buttongroup-bg-selected: #333;
    --buttongroup-color-selected: #fff;
    --balance-label: #b2b2b2;
    --balance-color: #fff;
    --orderbook-title: #666;
    --orderbook-buy-bg: #4ef09d26;
    --orderbook-sell-bg: #ff5a5a33;
    --orderbook-icon-border: #b2b2b2;
    --bottomsheet-color-selected: #4ef09d;
    --bottomsheet-item-bg-selected: #222;
    --searchInput-bg: #222;
    --searchInput-placeholder-color: #666;
    --searchInput-icon-color: #666;
    --trademarket-tab-color: #b2b2b2;
    --trademarket-tab-color-active: #fff;
    --trademarket-yellow: #e2c003;
    --trademarket-basket: #74a5eb;
    --sorter-color: #666;
    --sorter-color-active: #b2b2b2;
    --sorter-title-color: #666;
    --marketlist-white: #fff;
    --marketlist-grey: #b2b2b2;
    --marketlist-grey2: #666;
    --marketlist-grey3: #333;
    --marketlist-grey4: #222;
    --marketlist-pressed-bg: #333;
    --marketlist-positive: #02a67f;
    --listitem-bg: #2222224d;
    --listitem-bg-active: #222;
    --listItem-color: #fff;
    --chip-error-bg: linear-gradient(0deg, rgba(0, 0, 0, .2) 0%, rgba(0, 0, 0, .2) 100%), rgba(255, 90, 90, .15);
    --chip-success-bg: linear-gradient(0deg, rgba(0, 0, 0, .2) 0%, rgba(0, 0, 0, .2) 100%), rgba(78, 240, 157, .1);
    --chip-info-bg: linear-gradient(0deg, rgba(116, 165, 235, .15) 0%, rgba(116, 165, 235, .15) 100%), rgba(0, 0, 0, .2);
    --chip-warning-bg: linear-gradient(0deg, rgba(0, 0, 0, .2) 0%, rgba(0, 0, 0, .2) 100%), rgba(255, 230, 0, .1);
    --confirm-order-color: #b2b2b2;
    --confirm-order-white: #fff;
    --confirm-order-divider: #222;
    --tradebutton-border-color: #ebebeb;
    --radiobutton-border-color: #b2b2b2;
    --guide-chip-bg: #222;
    --orderCard-bg: rgba(34, 34, 34, .5);
    --orderCard-label-color: #b2b2b2;
    --orderCard-value-color: #fff;
    --orderCard-btn-bg: #333;
    --circular-progress-border: #666;
    --circular-progress-color: #fff;
    --ordersTab-bg: #222;
    --orderCard-divider: #333;
    --bottomsheet-background: #1a1a1a;
    --bottomsheet-color: #fff;
    --bottomsheet-close-color: #b2b2b2;
    --bottomsheet-divider-color: #333;
    --bottomsheet-overlay-bg: rgba(58, 58, 58, .82);
    --plancard-bg: rgba(34, 34, 34, .3);
    --plancard-bg-active: #222;
    --plancard-white: #fff;
    --plancard-gray: #b2b2b2;
    --pinxcard-white: #fff;
    --pinxcard-gray: #babec2;
    --pinxcard-border-color: #333;
    --pinxinfo-white-color: #fff;
    --pinxinfo-label-color: #b2b2b2;
    --settings-color: #fff;
    --more-color-white: #fff;
    --more-img-bg: #333;
    --more-img-color: #d8d8d8;
    --more-bookmark-color: #e2c003;
    --loading-color: #fff
}

._bottomSheetOverlay_5zwq1_117 {
    background-color: transparent;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    transition: background-color .3s ease
}

._bottomSheetOverlay_5zwq1_117._open_5zwq1_126 {
    background-color: var(--bottomsheet-overlay-bg)
}

._bottomSheetOverlay_5zwq1_117._light_5zwq1_129 {
    --tab-color: #666;
    --tab-color-active: #1a1a1a;
    --tab-border-bottom: #b2b2b2;
    --icon-color: #666;
    --buy-color: #02a67f;
    --buy-color-transparent: #02a67f26;
    --sell-color: #ff5a5a;
    --sell-color-transparent: #ff5a5a1a;
    --background: #f2f2f2;
    --main-background: #e9e9e9;
    --title-color: #1a1a1a;
    --button-bg: #d8d8d8;
    --button-color: #666;
    --togglebutton-color: #666;
    --input-bg: #e1e1e1;
    --input-color: #333;
    --input-placeholder-color: #b2b2b2;
    --input-color-error: #ff5a5a;
    --input-postfix-color: #333;
    --input-icon-color: #666;
    --input-icon-color-deactive: #b2b2b2;
    --input-divider: #333;
    --input-border-bottom: #b2b2b2;
    --input-disabled-color: #666;
    --approximation-color: #666;
    --buttongroup-bg: #e1e1e1;
    --buttongroup-color: #666;
    --buttongroup-bg-selected: rgba(178, 178, 178, 0, 7);
    --buttongroup-color-selected: #333;
    --balance-label: #666;
    --balance-color: #1a1a1a;
    --orderbook-title: #666;
    --orderbook-buy-bg: #4ef09d26;
    --orderbook-sell-bg: #ff5a5a33;
    --orderbook-icon-border: #666;
    --searchInput-bg: #e1e1e1;
    --searchInput-placeholder-color: #b2b2b2;
    --searchInput-icon-color: #b2b2b2;
    --trademarket-tab-color: #666;
    --trademarket-tab-color-active: #1a1a1a;
    --trademarket-yellow: #e2c003;
    --trademarket-basket: #134094;
    --sorter-color: #b2b2b2;
    --sorter-color-active: #666;
    --sorter-title-color: #666;
    --marketlist-white: #1a1a1a;
    --marketlist-grey: #666;
    --marketlist-grey2: #666;
    --marketlist-grey3: #e1e1e1;
    --marketlist-grey4: #d8d8d8;
    --marketlist-pressed-bg: #e1e1e1;
    --marketlist-positive: #02a67f;
    --listitem-bg: rgba(225, 225, 225, .3);
    --listitem-bg-active: #e1e1e1;
    --listItem-color: #1a1a1a;
    --chip-error-bg: linear-gradient(0deg, rgba(255, 255, 255, .2) 0%, rgba(255, 255, 255, .2) 100%), rgba(255, 90, 90, .15);
    --chip-success-bg: linear-gradient(0deg, rgba(255, 255, 255, .2) 0%, rgba(255, 255, 255, .2) 100%), rgba(2, 166, 127, .1);
    --chip-info-bg: linear-gradient(0deg, rgba(116, 165, 235, .15) 0%, rgba(116, 165, 235, .15) 100%), rgba(255, 255, 255, .2);
    --chip-warning-bg: linear-gradient(0deg, rgba(255, 255, 255, .2) 0%, rgba(255, 255, 255, .2) 100%), rgba(255, 230, 0, .2);
    --confirm-order-color: #666;
    --confirm-order-white: #1a1a1a;
    --confirm-order-divider: #d8d8d8;
    --tradebutton-border-color: #333;
    --radiobutton-border-color: #666;
    --guide-chip-bg: #f2f2f2;
    --orderCard-bg: #e1e1e199;
    --orderCard-label-color: #666;
    --orderCard-value-color: #1a1a1a;
    --orderCard-btn-bg: #f2f2f2;
    --circular-progress-border: #b2b2b2;
    --circular-progress-color: #1a1a1a;
    --ordersTab-bg: #d8d8d8;
    --orderCard-divider: #d8d8d8;
    --bottomsheet-background: #f2f2f2;
    --bottomsheet-divider-color: #d8d8d8;
    --bottomsheet-overlay-bg: #3a3a3ad1;
    --bottomsheet-color: #1a1a1a;
    --bottomsheet-color-selected: #02a67f;
    --bottomsheet-item-bg-selected: #222;
    --bottomsheet-close-color: #666;
    --plancard-bg: rgba(34, 34, 34, .3);
    --plancard-bg-active: #d8d8d8;
    --plancard-white: #1a1a1a;
    --plancard-gray: #666;
    --pinxcard-white: #1a1a1a;
    --pinxcard-gray: #666;
    --pinxcard-border-color: #d8d8d8;
    --pinxinfo-white-color: #1a1a1a;
    --pinxinfo-label-color: #666;
    --settings-color: #1a1a1a;
    --more-color-white: #1a1a1a;
    --more-img-bg: #d8d8d8;
    --more-img-color: #333;
    --more-bookmark-color: #e2c003;
    --loading-color: #1a1a1a
}

._bottomSheetContainer_5zwq1_245 {
    background-color: var(--bottomsheet-background);
    color: var(--bottomsheet-color);
    position: absolute;
    width: 100%;
    bottom: 0;
    height: var(--bottomsheet-height);
    transform: translateY(100%);
    z-index: 110;
    border-radius: 16px 16px 0 0;
    opacity: 0;
    transition: transform .2s var(--bottomsheet-animation), opacity .2s ease-out
}

._bottomSheetContainer_5zwq1_245._open_5zwq1_126 {
    transform: translateY(0);
    opacity: 1
}

._bottomSheetHeader_5zwq1_264 {
    padding: 16px 16px 12px 8px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    flex-shrink: 0;
    flex-grow: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px
}

._bottomSheetHeader_5zwq1_264 ._bottomSheetCloseContainer_5zwq1_277 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    flex-shrink: 0;
    flex-grow: 0;
    color: var(--bottomsheet-close-color)
}

._bottomSheetDivider_5zwq1_288 {
    all: unset;
    display: block;
    border-bottom: 1px solid var(--bottomsheet-divider-color)
}

._wheel_tthwu_1._keen-slider_tthwu_1 {
    display: block;
    color: #fff;
    height: 100%;
    overflow: visible;
    width: 100%
}

._wheel--perspective-right_tthwu_8._wheel__inner_tthwu_8 {
    perspective-origin: calc(50% + 100px) 50%;
    transform: translate(10px);
    -webkit-transform: translateX(10px)
}

._wheel--perspective-left_tthwu_13 ._wheel__inner_tthwu_8 {
    perspective-origin: calc(50% - 100px) 50%;
    transform: translate(-10px);
    -webkit-transform: translateX(-10px)
}

._wheel__inner_tthwu_8 {
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    transform-style: preserve-3d;
    height: 16%;
    width: 100%
}

._wheel__slides_tthwu_27 {
    height: 100%;
    position: relative;
    width: 100%
}

._wheel__shadow-top_tthwu_32,
._wheel__shadow-bottom_tthwu_32 {
    left: 0;
    height: calc(42% + 2px);
    width: 100%;
    position: relative;
    margin-top: -2px;
    z-index: 5
}

._wheel__shadow-bottom_tthwu_32 {
    margin-top: 2px;
    border-bottom: none
}

._wheel__label_tthwu_44 {
    font-weight: 500;
    font-size: 15px;
    line-height: 1;
    margin-top: 1px;
    margin-left: 5px
}

._wheel__slide_tthwu_27 {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    display: flex;
    font-weight: 400;
    height: 100%;
    width: 100%;
    position: absolute;
    text-align: center;
    align-items: center;
    justify-content: center;
    background-color: #222;
    border-radius: 4px;
    font-size: 14px
}

._wheel__slide_tthwu_27 span {
    height: 100%;
    line-height: 32px
}

._wheel__slide-light_tthwu_70 {
    background-color: #e1e1e1b3;
    color: #000
}

._wheel__slide-light_tthwu_70 ._active_tthwu_74 {
    background-color: #222 !important
}

._dropdown-inputs-container_vowom_1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    position: relative
}

._dropdown-inputs-container_vowom_1 ._dropdown-mobile-wrapper_vowom_7 {
    all: unset;
    box-sizing: border-box;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 30
}

._all_wheels_container_vowom_18 {
    height: 210px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 8px
}

._all_wheels_container_vowom_18 ._wheel_container_vowom_25 {
    width: 130px;
    height: 180px
}

._all_wheels_container_vowom_18 ._wheel_container_vowom_25:nth-child(2) {
    margin-inline: 8px
}

._button_contianer_vowom_33 {
    padding: 0 8px
}

._bottom-sheet-light_vowom_37 {
    --bottomsheet-background: rgba(255, 255, 255, 1);
    --bottomsheet-color: rgba(26, 26, 26, 1);
    --bottomsheet-close-color: #b2b2b2;
    --bottomsheet-divider-color: #333;
    --bottomsheet-overlay-bg: rgba(58, 58, 58, .82)
}

._bottom-sheet-light_vowom_37._bottomSheetContainer_vowom_44 {
    background-color: var(--bottomsheet-background);
    color: var(--bottomsheet-color)
}

._bottom-sheet-light_vowom_37 ._bottomSheetHeader_vowom_48 ._bottomSheetCloseContainer_vowom_48 {
    color: var(--bottomsheet-close-color)
}

._bottom-sheet-light_vowom_37 ._bottomSheetDivider_vowom_51 {
    border-bottom: 1px solid var(--bottomsheet-divider-color)
}

* {
    box-sizing: border-box
}

.identityauth-container {
    position: relative;
    width: 408px;
    flex-shrink: 0;
    border-radius: 16px;
    padding-top: 24px
}

.identityauth-container.dark-theme {
    color: #d8d8d8
}

.identityauth-container.dark-theme .texts-container .title {
    color: #fff
}

.identityauth-container.dark-theme .texts-container .description {
    color: #d8d8d8
}

.identityauth-container.light-theme {
    color: #333
}

.identityauth-container.light-theme .texts-container .title {
    color: #1a1a1a
}

.identityauth-container.light-theme .texts-container .description {
    color: #333
}

.identityauth-container .video-container {
    width: 100%;
    display: flex;
    justify-content: center
}

.identityauth-container .video-container .circular-progressbar {
    box-sizing: content-box;
    width: 240px;
    height: 240px;
    border-radius: 240px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: none;
    border-color: transparent
}

.identityauth-container .video-container .circular-progressbar .video {
    position: relative;
    width: 240px;
    height: 240px;
    border-radius: inherit;
    overflow: hidden;
    display: flex;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    outline: none !important
}

.identityauth-container .video-container .circular-progressbar .video .videoOverlay {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: #01010199
}

.identityauth-container .video-container .circular-progressbar .video .videoOverlay .playBtn {
    position: inherit;
    z-index: 10
}

.identityauth-container .texts-container {
    margin-top: 32px
}

.identityauth-container .texts-container .title {
    text-align: right;
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 180%;
    text-transform: capitalize
}

.identityauth-container .texts-container .description {
    margin-top: 12px;
    text-align: right;
    color: #d8d8d8;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%;
    text-transform: capitalize
}

.identityauth-container .toggle-btn-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-bottom: 16px;
    height: 100px
}

.identityauth-container .toggle-btn-container img {
    cursor: pointer;
    transition: transform .3s ease-out;
    -webkit-tap-highlight-color: transparent
}

.identityauth-container .toggle-btn-container img:hover {
    transform: scale(1.1)
}

.identityauth-container .toggle-btn-container .btn .label {
    text-align: center;
    margin-top: 8px
}

.identityauth-container .toggle-btn-container .resetBtn {
    padding-top: 16px;
    text-align: center
}

.identityauth-container .toggle-btn-container .resetBtn .label {
    margin-top: 8px
}

.upload-video-progress__container {
    width: 100%;
    margin-top: 24px;
    position: relative;
    z-index: 11
}

.upload-video-progress__info_container {
    direction: rtl;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 8px 0
}

.upload-video-progress__blur-background {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    height: 100vh;
    width: 100vw;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px)
}

._tableWrapper_gce85_1 {
    overflow-x: auto
}

._tableWrapper_gce85_1 ._table_gce85_1 {
    width: 100%
}

._tableWrapper_gce85_1 ._table_gce85_1 ._tableHead_gce85_7>._tableRow_gce85_7 th,
._tableWrapper_gce85_1 ._table_gce85_1 ._tableHead_gce85_7>._tableRow_gce85_7 td,
._tableWrapper_gce85_1 ._table_gce85_1 ._tableBody_gce85_9>._tableRow_gce85_7 th,
._tableWrapper_gce85_1 ._table_gce85_1 ._tableBody_gce85_9>._tableRow_gce85_7 td {
    overflow: hidden;
    text-align: right;
    padding-left: 8px;
    padding-right: 8px;
    white-space: nowrap;
    color: var(--body_text_primary)
}

._tableWrapper_gce85_1 ._table_gce85_1 ._tableHead_gce85_7>._tableRow_gce85_7 th,
._tableWrapper_gce85_1 ._table_gce85_1 ._tableBody_gce85_9>._tableRow_gce85_7 th {
    font-size: .875rem;
    font-weight: 500
}

._tableWrapper_gce85_1 ._table_gce85_1 ._tableHead_gce85_7>._tableRow_gce85_7 td,
._tableWrapper_gce85_1 ._table_gce85_1 ._tableBody_gce85_9>._tableRow_gce85_7 td {
    font-size: .875rem;
    font-weight: 400
}

._tableWrapper_gce85_1 ._table_gce85_1 ._tableHead_gce85_7>._tableRow_gce85_7 td>*,
._tableWrapper_gce85_1 ._table_gce85_1 ._tableBody_gce85_9>._tableRow_gce85_7 td>* {
    width: fit-content !important
}

._tableWrapper_gce85_1 ._table_gce85_1 ._tableHead_gce85_7>._tableRow_gce85_7 {
    overflow: hidden;
    border-radius: 20px
}

._tableWrapper_gce85_1 ._table_gce85_1 ._tableHead_gce85_7>._tableRow_gce85_7>th {
    height: 56px;
    color: var(--body_text_secondary);
    border-top: solid 1px var(--border-main-tertiary);
    border-bottom: solid 1px var(--border-main-tertiary)
}

._tableWrapper_gce85_1 ._table_gce85_1 ._tableHead_gce85_7._hasBackground_gce85_42>._tableRow_gce85_7>th {
    color: var(--content-text-secondary);
    border-bottom: none;
    background-color: var(--surface-main-secondary)
}

._tableWrapper_gce85_1 ._table_gce85_1 ._tableHead_gce85_7._hasBackground_gce85_42._topCurved_gce85_47>._tableRow_gce85_7>th:first-child {
    overflow: hidden;
    border-radius: 0 8px 0 0
}

._tableWrapper_gce85_1 ._table_gce85_1 ._tableHead_gce85_7._hasBackground_gce85_42._topCurved_gce85_47>._tableRow_gce85_7>th:last-child {
    overflow: hidden;
    border-radius: 8px 0 0
}

._tableWrapper_gce85_1 ._table_gce85_1 ._tableHead_gce85_7._hasBackground_gce85_42._fullCurved_gce85_55>._tableRow_gce85_7>th {
    border-bottom: none
}

._tableWrapper_gce85_1 ._table_gce85_1 ._tableHead_gce85_7._hasBackground_gce85_42._fullCurved_gce85_55>._tableRow_gce85_7>th:first-child {
    overflow: hidden;
    border-radius: 0 8px 8px 0
}

._tableWrapper_gce85_1 ._table_gce85_1 ._tableHead_gce85_7._hasBackground_gce85_42._fullCurved_gce85_55>._tableRow_gce85_7>th:last-child {
    overflow: hidden;
    border-radius: 8px 0 0 8px
}

._tableWrapper_gce85_1 ._table_gce85_1 ._tableHead_gce85_7._headerCellsTextCenter_gce85_66>._tableRow_gce85_7>th {
    text-align: center
}

._tableWrapper_gce85_1 ._table_gce85_1 ._tableHead_gce85_7._headerLastCellTextLeft_gce85_69>._tableRow_gce85_7>th:last-child {
    text-align: left
}

._tableWrapper_gce85_1 ._table_gce85_1 ._tableBody_gce85_9>._tableRow_gce85_7>td {
    height: 60px
}

._tableWrapper_gce85_1 ._table_gce85_1 ._tableBody_gce85_9._rowHasBottomBorder_gce85_75>._tableRow_gce85_7>td {
    border-bottom: solid 1px var(--border-main-secondary)
}

._tableWrapper_gce85_1 ._table_gce85_1 ._tableBody_gce85_9._bodyCellsTextCenter_gce85_78>._tableRow_gce85_7>td {
    text-align: center
}

._tableWrapper_gce85_1 ._table_gce85_1 ._tableBody_gce85_9._bodyLastCellTextLeft_gce85_81>._tableRow_gce85_7>td:last-child {
    text-align: left
}

.DatePicker {
    position: relative;
    display: inline-block;
    z-index: 100
}

.DatePicker__input {
    background: #fff;
    border: 1px solid #ddd;
    padding: .4em .8em;
    font-family: inherit;
    text-align: center;
    font-size: 12px
}

.DatePicker__input.-rtl {
    direction: rtl
}

.DatePicker__input::placeholder {
    color: #979797
}

.DatePicker__calendarContainer.-top+.DatePicker__calendarArrow {
    top: auto;
    bottom: calc(100% + 10px);
    transform: translateY(-2.5rem) rotate(180deg);
    animation: fadeArrowFlipped .3s forwards
}

.DatePicker__calendarContainer {
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    transform: translate(-50%)
}

.DatePicker__calendarContainer.-top {
    top: auto;
    bottom: calc(100% + 20px)
}

.Calendar,
.Calendar * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    direction: ltr
}

.Calendar,
.Calendar.-rtl * {
    direction: rtl
}

.DatePicker__calendarArrow {
    position: absolute;
    width: 0;
    height: 0;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    margin: 0 auto;
    border-style: solid;
    z-index: 10;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #fff transparent
}

.Calendar {
    --cl-color-black: #444444;
    --cl-color-disabled: #d4d4d4;
    --cl-color-error: #ff2929;
    font-size: 10px;
    background: #fff;
    box-shadow: 0 1em 4em #00000012;
    border-radius: 1em;
    position: relative;
    -webkit-user-select: none;
    user-select: none;
    padding-top: 1.2em;
    display: flex;
    flex-direction: column;
    width: 33em;
    z-index: 10;
    max-width: 90vw;
    min-height: 36.7em
}

.DatePicker .Calendar,
.DatePicker__calendarArrow {
    transform: translateY(2.5em);
    opacity: 0;
    animation: fadeCalendar .3s forwards
}

.DatePicker__calendarContainer.-top .Calendar {
    transform: translateY(-2.5em)
}

.Calendar.-noFocusOutline *:focus {
    outline: none !important
}

.Calendar>:not(.Calendar__footer) button {
    font-family: inherit;
    background: transparent;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    outline: none
}

.Calendar__header {
    display: flex;
    color: var(--cl-color-black);
    padding: 2em 2.9em;
    align-items: center;
    overflow: hidden
}

.Calendar__monthArrowWrapper {
    line-height: 0;
    font-size: 1em;
    padding: 3px;
    position: relative;
    border: none;
    z-index: 1;
    opacity: 1;
    transition: .2s
}

.Calendar__monthArrowWrapper:focus {
    outline: 1px dashed rgba(0, 0, 0, .4);
    outline-offset: 2px
}

.Calendar__monthArrowWrapper:disabled,
.Calendar__monthArrowWrapper.-hidden {
    opacity: 0;
    pointer-events: none
}

.Calendar__monthArrowWrapper.-left {
    transform: rotate(90deg)
}

.Calendar.-rtl .Calendar__monthArrowWrapper.-left,
.Calendar__monthArrowWrapper.-right {
    transform: rotate(-90deg)
}

.Calendar.-rtl .Calendar__monthArrowWrapper.-right {
    transform: rotate(90deg)
}

.Calendar__monthArrowWrapper:active .Calendar__monthArrow {
    transform: scale(.7)
}

.Calendar__monthArrow {
    border-radius: 50%;
    transition: var(--animation-duration) transform;
    pointer-events: none;
    background-repeat: no-repeat;
    display: block;
    width: 1.7em;
    height: 1.7em;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cg class='nc-icon-wrapper' fill='%23000000'%3E%3Cdefs stroke='none'%3E%3C/defs%3E%3Cpath class='cls-1' d='M12 23.25V.75' fill='none' stroke='%23000000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5px'%3E%3C/path%3E%3Cpath class='cls-2' d='M22.5 11.25L12 .75 1.5 11.25' fill='none' stroke='%23000000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5px' fill-rule='evenodd'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
    background-size: 100% 100%
}

.Calendar__monthYearContainer {
    flex: 1;
    position: relative
}

.Calendar__monthYear {
    font-size: 1.6em;
    font-weight: 500;
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: var(--animation-duration);
    line-height: 1
}

.Calendar__monthYear.-hiddenNext {
    opacity: 0;
    transform: translate(50%)
}

.Calendar.-rtl .Calendar__monthYear.-hiddenNext {
    transform: translate(-150%)
}

.Calendar__monthYear.-hiddenPrevious {
    opacity: 0;
    transform: translate(-150%)
}

.Calendar.-rtl .Calendar__monthYear.-hiddenPrevious {
    transform: translate(50%)
}

.Calendar__monthYear.-shown {
    opacity: 1;
    margin-top: auto;
    margin-bottom: auto;
    transform: translate(-50%)
}

.Calendar__monthYear.-shownAnimated {
    animation: var(--animation-duration) fadeTextToCenter forwards
}

.Calendar__monthYear>* {
    padding: .2em .5em;
    border: 1px solid transparent;
    transition: var(--animation-duration);
    font-size: 1.05em;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translate(0) scale(.95);
    will-change: transform;
    border-radius: 5px
}

.Calendar__monthYear:not(.-shown)>*,
.Calendar__monthYear>*.-hidden {
    cursor: default;
    pointer-events: none
}

.Calendar__monthText {
    margin-left: -.3em
}

.Calendar__yearText:last-child {
    margin-right: -.3em
}

.Calendar__monthYear.-shown>*:hover,
.Calendar:not(.-noFocusOutline) .Calendar__monthYear.-shown>*:focus,
.Calendar__monthYear>*.-activeBackground {
    background: #f5f5f5
}

.Calendar__monthText:hover {
    transform: translate(-.2em) scale(.95)
}

.Calendar.-rtl .Calendar__monthText:hover,
.Calendar__yearText:hover {
    transform: translate(.2em) scale(.95)
}

.Calendar.-rtl .Calendar__yearText:hover {
    transform: translate(-.2em) scale(.95)
}

.Calendar__monthYear .Calendar__yearText.-hidden {
    transform: translate(50%);
    opacity: 0
}

.Calendar.-rtl .Calendar__monthYear .Calendar__yearText.-hidden {
    transform: translate(-50%)
}

.Calendar__monthYear .Calendar__monthText.-hidden {
    transform: translate(-50%);
    opacity: 0
}

.Calendar.-rtl .Calendar__monthYear .Calendar__monthText.-hidden {
    transform: translate(50%)
}

.Calendar__monthYear:not(.-shown)>* {
    pointer-events: none
}

.Calendar__monthSelectorAnimationWrapper,
.Calendar__yearSelectorAnimationWrapper {
    position: absolute;
    width: 100%;
    height: 80%;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden
}

.Calendar__monthSelectorWrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center
}

.Calendar__monthSelector {
    padding: 0 2.5em 2em;
    align-content: center
}

.Calendar__monthSelector,
.Calendar__yearSelector {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    background-color: #fff;
    transform: translateY(-150%);
    will-change: transform;
    transition: .6s;
    height: 100%
}

.Calendar__yearSelectorWrapper {
    width: 100%;
    height: 100%
}

.Calendar__yearSelectorWrapper:after,
.Calendar__yearSelectorWrapper:before {
    content: "";
    width: 100%;
    height: 5em;
    position: absolute;
    left: 0;
    opacity: 0;
    transition: .4s;
    transition-delay: .2s
}

.Calendar__yearSelectorWrapper:after {
    background-image: linear-gradient(to bottom, #fff, #fff 10%, #f5f5f500);
    top: -.1em
}

.Calendar__yearSelectorWrapper:before {
    background-image: linear-gradient(to top, #fff, #fff 10%, #f5f5f500);
    bottom: 0
}

.Calendar__yearSelectorWrapper.-faded:after,
.Calendar__yearSelectorWrapper.-faded:before {
    opacity: 1;
    z-index: 3
}

.Calendar__yearSelector {
    align-content: flex-start;
    scrollbar-width: 0;
    overflow: scroll;
    position: relative;
    width: 100%;
    padding: 5em 2em;
    -ms-overflow-style: none
}

.Calendar__yearSelector::-webkit-scrollbar {
    display: none
}

.Calendar__yearSelectorItem {
    width: 25%;
    display: flex;
    justify-content: center
}

.Calendar__yearSelectorItem:not(:nth-child(-n+4)) {
    margin-top: 1.5em
}

.Calendar__yearSelectorText {
    border: none;
    font-size: 1.4em;
    min-width: 85%;
    padding: .2em .5em;
    border-radius: 8.5px
}

.Calendar__monthSelector.-open,
.Calendar__yearSelector.-open {
    transform: translateY(0)
}

.Calendar__yearSelectorText:focus,
.Calendar__monthSelectorItemText:focus {
    outline: 1px dashed rgba(0, 0, 0, .4);
    outline-offset: 2px
}

.Calendar__monthSelectorItem {
    width: calc(100% / 3);
    display: flex;
    justify-content: center
}

.Calendar__monthSelectorItem:not(:nth-child(-n+3)) {
    margin-top: 2em
}

.Calendar__monthSelectorItemText {
    border: none;
    padding: .4em;
    border-radius: 8.5px;
    font-size: 1.3em;
    min-width: 70%;
    transition: .3s
}

.Calendar__monthSelectorItem:not(.-active) .Calendar__monthSelectorItemText:not(:disabled):hover,
.Calendar__yearSelectorItem:not(.-active) .Calendar__yearSelectorText:not(:disabled):hover {
    background: #f5f5f5
}

.Calendar__monthSelectorItemText:disabled,
.Calendar__yearSelectorText:disabled {
    opacity: .5;
    cursor: default
}

.Calendar__monthSelectorItem.-active .Calendar__monthSelectorItemText,
.Calendar__yearSelectorItem.-active .Calendar__yearSelectorText {
    background-color: var(--cl-color-primary);
    color: #fff
}

.Calendar__weekDays {
    display: flex;
    justify-content: space-between;
    color: var(--cl-color-disabled);
    font-size: 1.2em;
    margin-bottom: .7em;
    padding: 0 2.6em;
    position: relative
}

.Calendar__weekDay {
    display: block;
    width: calc(100% / 7);
    text-align: center;
    text-decoration: none
}

.Calendar__sectionWrapper {
    position: relative;
    min-height: 25.8em;
    overflow: hidden
}

.Calendar__section {
    display: flex;
    flex-direction: column;
    padding: .5em 3.2em 0;
    position: absolute;
    color: var(--cl-color-black);
    top: 0;
    left: 0;
    width: 100%;
    will-change: transform, opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
    transition: var(--animation-duration)
}

.Calendar__section.-hiddenPrevious {
    opacity: .5;
    transform: translate(-90%)
}

.Calendar.-rtl .Calendar__section.-hiddenPrevious {
    transform: translate(90%)
}

.Calendar__section.-hiddenNext {
    opacity: .5;
    transform: translate(90%)
}

.Calendar.-rtl .Calendar__section.-hiddenNext {
    transform: translate(-90%)
}

.Calendar__section.-shown {
    opacity: 1;
    transform: translate(0)
}

.Calendar__section.-shownAnimated {
    animation: var(--animation-duration) FadeContentToCenter forwards
}

.Calendar__weekRow {
    display: flex;
    width: 100%
}

.Calendar__day {
    display: block;
    width: calc(100% / 7);
    text-align: center;
    padding: calc(.25em - 1px) 0;
    font-size: 1.6em;
    border-radius: 50%;
    transition: .2s;
    border: 1px solid transparent;
    margin-bottom: .3em;
    color: #000c;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer
}

.Calendar__day:focus {
    outline: 1px dashed rgba(0, 0, 0, .4);
    outline-offset: 2px
}

.Calendar__day.-ltr {
    min-height: 2.6em;
    font-size: 1.45em
}

.Calendar__day.-rtl {
    font-size: 1.55em;
    height: 2.45em
}

.Calendar__day:not(.-blank):not(.-selectedStart):not(.-selectedEnd):not(.-selectedBetween):not(.-selected):hover {
    background: #eaeaea;
    border-radius: 50%;
    color: var(--cl-color-black);
    border-color: transparent
}

.Calendar__day.-selected,
.Calendar__day.-selectedStart,
.Calendar__day.-selectedEnd {
    background: var(--cl-color-primary);
    color: #fff
}

.Calendar__day.-ltr.-selectedStart {
    border-radius: 100em 0 0 100em
}

.Calendar__day.-rtl.-selectedStart {
    border-radius: 0 100em 100em 0
}

.Calendar__day.-selectedBetween {
    background: var(--cl-color-primary-light);
    color: var(--cl-color-primary);
    border-radius: 0
}

.Calendar__day.-ltr.-selectedEnd {
    border-top-right-radius: 100em;
    border-bottom-right-radius: 100em
}

.Calendar__day.-rtl.-selectedEnd {
    border-top-left-radius: 100em;
    border-bottom-left-radius: 100em
}

.Calendar__day.-weekend:not(.-selected):not(.-blank):not(.-selectedStart):not(.-selectedEnd):not(.-selectedBetween) {
    color: var(--cl-color-error)
}

.Calendar__day.-weekend.-today:not(.-selectedStart):not(.-selectedEnd):not(.-selectedBetween):after {
    background: var(--cl-color-error)
}

.Calendar__day.-disabled {
    color: var(--cl-color-disabled) !important;
    background: transparent !important;
    cursor: default !important
}

.Calendar__day.-selected {
    border-radius: 50%
}

.Calendar__day.-today:not(.-selectedStart):not(.-selectedEnd):not(.-selectedBetween) {
    font-weight: 600;
    color: var(--cl-color-black);
    color: #000;
    position: relative
}

.Calendar__day.-today:not(.-selectedStart):not(.-selectedEnd):not(.-selectedBetween):after {
    content: "";
    position: absolute;
    bottom: .2em;
    display: block;
    width: .6em;
    height: 1px;
    background: #000;
    left: 50%;
    opacity: .5;
    transform: translate(-50%);
    transition: .2s
}

.Calendar__day.-today:hover:not(.-selectedStart):not(.-selectedEnd):not(.-selectedBetween):after {
    opacity: 0
}

.Calendar__day.-blank {
    color: transparent;
    cursor: default;
    pointer-events: none
}

.Calendar__footer {
    position: relative;
    z-index: 1
}

@keyframes fadeCalendar {
    0% {
        opacity: 0
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeArrowFlipped {
    0% {
        opacity: 0
    }

    to {
        opacity: 1;
        transform: translateY(0) rotate(180deg)
    }
}

@keyframes fadeTextToCenter {
    to {
        opacity: 1;
        transform: translate(-50%)
    }
}

@keyframes FadeContentToCenter {
    to {
        opacity: 1;
        transform: translate(0)
    }
}

@font-face {
    font-family: IranYekanX;
    font-style: normal;
    font-weight: 300;
    src: url(IRANYekanX-Light.woff2) format("woff2"), url(IRANYekanX-Light.woff) format("woff"), url(IRANYekanX-Light.ttf) format("truetype")
}

@font-face {
    font-family: IranYekanX;
    font-style: normal;
    font-weight: 400;
    src: url(IRANYekanX-Regular.woff2) format("woff2"), url(IRANYekanX-Regular.woff) format("woff"), url(IRANYekanX-Regular.ttf) format("truetype")
}

@font-face {
    font-family: IranYekanX;
    font-style: normal;
    font-weight: 500;
    src: url(IRANYekanX-Medium.woff2) format("woff2"), url(IRANYekanX-Medium.woff) format("woff"), url(IRANYekanX-Medium.ttf) format("truetype")
}

@font-face {
    font-family: IranYekanX;
    font-style: normal;
    font-weight: 600;
    src: url(IRANYekanX-DemiBold.woff2) format("woff2"), url(IRANYekanX-DemiBold.woff) format("woff"), url(IRANYekanX-DemiBold.ttf) format("truetype")
}

@font-face {
    font-family: IranYekanX;
    font-style: normal;
    font-weight: 700;
    src: url(IRANYekanX-Bold.woff2) format("woff2"), url(IRANYekanX-Bold.woff) format("woff"), url(IRANYekanX-Bold.ttf) format("truetype")
}

.light10 {
    font-size: 10px;
    font-weight: 300
}

.regular10,
.table1-light__row,
.table1__row,
.buy_range-light .main-staick-bubblue,
.buy_range-light .full-value,
.buy_range-light .three-quarter,
.buy_range-light .half-value,
.buy_range-light .one-quarter,
.buy_range-light .zero-value,
.buy_range .main-staick-bubblue,
.buy_range .full-value,
.buy_range .three-quarter,
.buy_range .half-value,
.buy_range .one-quarter,
.buy_range .zero-value,
.sell_range-light .main-staick-bubblue,
.sell_range-light .full-value,
.sell_range-light .three-quarter,
.sell_range-light .half-value,
.sell_range-light .one-quarter,
.sell_range-light .zero-value,
.sell_range .main-staick-bubblue,
.sell_range .full-value,
.sell_range .three-quarter,
.sell_range .half-value,
.sell_range .one-quarter,
.sell_range .zero-value,
.navigation1,
.input9-light__title,
.input9__title,
.input7-light__title,
.input7__title,
.input6-light__title,
.input6__title,
.input5-light__title,
.input5__title,
.input4__title,
.input3__bottom,
.input3__title,
.input1-light__bottom,
.input1-light__title,
.input1__bottom,
.input1__title,
.knh-page__part3 div.percent div.start-end,
.knh-page__part3 div.next-level,
.price-alert-light__list__item div.bottom,
.price-alert__list__item div.bottom,
.api-page__list div.bottom div.key,
.gift-cards-light__cards__list div.item div.used,
.gift-light__cards div.list div.item div.used,
.gift-light__cards div.buttons span.more,
.gift-cards__cards__list div.item div.used,
.gift__cards div.list div.item div.used,
.gift__cards div.buttons span.more,
.trade-validation-popup-light__row1__mode,
.trade-light__user-match-card div.row2__item,
.trade-light__user-match-card div.row1__time,
.trade-light__user-match-card div.row1__info,
.trade-light__user-match-card div.row1__market div.code,
.trade-light__user-order-card div.row2__item,
.trade-light__user-order-card div.row1,
.trade-light__card1 div.output div span.val,
.trade-light__card1 div.input-title div,
.trade-light__orders__box,
.trade-validation-popup__row1__mode,
.trade-detail__top div.left span.val,
.trade__user-match-card div.row2__item,
.trade__user-match-card div.row1__time,
.trade__user-match-card div.row1__info,
.trade__user-match-card div.row1__market div.code,
.trade__user-order-card div.row2__item,
.trade__user-order-card div.row1,
.trade__card1 div.output div span.val,
.trade__card1 div.input-title div,
.trade__orders__box,
.trade-markets__list__item div.info span.code,
.trade-markets__list__item div.info span.risk,
.trade-markets-table__body .title_fa-col .extra-info,
.address-card div.val,
.bitpinland__bitpinland-it div.progress div.progress-percent,
.bitpinland__bitpinland-it div.progress div.progress-title,
.history-page-light__deposit-tracker .title,
.history-page-light__deposit__desktop-card,
.history-page-light__deposit__card div.top__right div.time,
.history-page-light__deposit__card div.top__right div.currency span.en,
.history-page-light__order__desktop-card,
.history-page-light__order__card div.row1__market-info div.en,
.history-page-light__order__card div.row1__percent,
.history-deposit-tracker-list__tracker-card .state .val,
.history-page__deposit-tracker .title,
.history-page__deposit__desktop-card,
.history-page__deposit__card div.top__right div.time,
.history-page__deposit__card div.top__right div.currency span.en,
.history-page__order__desktop-card,
.history-page__order__card div.row1__market-info div.en,
.history-page__order__card div.row1__percent,
.otc-intro__button,
.otc-intro__body,
.otc__input-title span {
    font-size: 10px;
    font-weight: 400
}

.regular12,
.loan-dropdown-light__list div.item,
.loan-dropdown__list div.item,
.account-dropdown-light__list div.item,
.account-dropdown__list div.item,
.dropdown1__list div.item span.left-path2,
.dropdown1__list div.item span.left-path,
.new-tag-element,
.element11-light__range,
.element11__range,
.element8-light__list div.row p.answer,
.element8__list div.row p.answer,
.element7__list div.row p.answer,
.buy_range-light output,
.buy_range output,
.sell_range-light output,
.sell_range output,
.element4-light p,
.element4 p,
.element3-light div,
.element3 div,
.element1-light,
.element1,
.rate-popup-light__title2,
.rate-popup__title2,
.markets-popup-light__list div span.code,
.markets-popup-light__title,
.markets-popup__list div span.code,
.markets-popup__title,
.popup7-light__title,
.popup7__title,
.popup5__body p.popup-subtitle,
.popup1-light__body p.subtitle,
.popup1__body p.subtitle,
.switch4-light__title,
.switch4__title,
.tick-button p,
.input9-light__btn,
.input9__btn,
.input6-light__error,
.input6__error,
.input5-light__error,
.input5__error,
.input3__error,
.input3__text,
.input1-light__error,
.input1__error,
.currencies-card__item div.diff,
.currencies-card__item,
.currencies-card__header div,
.hamster-token-result-page__info-modal div.info-row,
.hamster-token-result-page__info-modal p,
.hamster-token-result-page>.status>.status-box>.pay-info div,
.support-ticket__text2,
.support-ticket__label,
.loan-calc-light__installment__list div.item,
.loan-calc-light__body div.input-title,
.loan-calc-light__body div.subtitle,
.loan-calc__installment__list div.item,
.loan-calc__body div.input-title,
.loan-calc__body div.subtitle,
.loan-detail-popup-light__hint,
.loan-detail-popup-light__row1 div.val,
.loan-detail-popup-light__row1 div.key,
.loan-desktop-card-light__card,
.loan-mobile-card-light__body__item span.val,
.loan-mobile-card-light__body__item span.key,
.loan-mobile-card-light__head div.code span.val,
.loan-mobile-card-light__head div.code,
.loan-mobile-card-light__head div.time,
.loan-detail-popup__hint,
.loan-detail-popup__row1 div.val,
.loan-detail-popup__row1 div.key,
.loan-desktop-card__card,
.loan-mobile-card__body__item span.val,
.loan-mobile-card__body__item span.key,
.loan-mobile-card__head div.code span.val,
.loan-mobile-card__head div.code,
.loan-mobile-card__head div.time,
.loan-preview-light__body div.input-title,
.loan-preview__body div.input-title,
.loan-collateral-light__price span.key,
.loan-collateral-light__price div.val,
.loan-collateral-light__balance-box span.balance-title,
.loan-collateral-light__balance-box span.amount,
.loan-collateral-light__balance-box span.code,
.loan-collateral-light__balance-box span.title,
.loan-collateral-light__collateral span.code,
.loan-collateral-light__body div.input-title,
.loan-collateral__price span.key,
.loan-collateral__price div.val,
.loan-collateral__balance-box span.balance-title,
.loan-collateral__balance-box span.amount,
.loan-collateral__balance-box span.code,
.loan-collateral__balance-box span.title,
.loan-collateral__collateral span.code,
.loan-collateral__body div.input-title,
.loan-landing-light__list2 div.item span.subtitle,
.loan-landing-light__list1 div.item span.subtitle,
.loan-landing-light__calc__drops div.input-title,
.loan-landing-light__calc__title,
.loan-landing-light__subtitle,
.loan-landing__list2 div.item span.subtitle,
.loan-landing__list1 div.item span.subtitle,
.loan-landing__calc__drops div.input-title,
.loan-landing__calc__title,
.loan-landing__subtitle,
.loan-insuff-popup-light__subtitle,
.loan-insuff-popup__subtitle,
.increase-collateral-light div.subtitle,
.increase-collateral-light__suggestion div.item,
.increase-collateral-light__out div.enough-row,
.increase-collateral-light__out div.balance-row div.val,
.increase-collateral-light__out div.balance-row span.key,
.increase-collateral-light__error,
.increase-collateral div.subtitle,
.increase-collateral__suggestion div.item,
.increase-collateral__out div.enough-row,
.increase-collateral__out div.balance-row div.val,
.increase-collateral__out div.balance-row span.key,
.increase-collateral__error,
.loan-verify-popup__hint,
.loan-verify-popup__row1 div.val,
.loan-verify-popup__row1 div.key,
.loan-verify-popup__desc,
.loan-verify-popup div.subtitle,
.installment-popup-light__list__list div.item,
.installment-popup-light div.title span.subtitle,
.installment-popup__list__list div.item,
.installment-popup div.title span.subtitle,
.loan-footer-light,
.loan-footer,
.loan-light__body__data p.text,
.loan__body__data p.text,
.knh-page__part4 div.desc,
.knh-page__part3 div.row span,
.knh-page__part2 div.empty div.empty-text,
.knh-page__part2 div.left div.item,
.knh-page__part1__item div.key,
.knh-page__part1 div.desc,
.knh-page__top__item div.change,
.knh-page__top__item div.key,
.notif-page__card div.more,
.notif-page__card div.body,
.notif-page__card div.time,
.notif-page__body__count,
.ios-dl__item span,
.price-alert-light__media div.title,
.price-alert-light__input-title,
.price-alert__media div.title,
.price-alert__input-title,
.api-keys__keys div.key,
.api-detail-page div.ip-list div,
.api-detail-page div.input-title,
.api-page__top div.input-title,
.menu-security-light__google-auth div.input-title,
.menu-security-light__google-auth div.codetext,
.menu-security-light__google-auth div.desc,
.menu-security-light__two-factor__options div div.subtitle,
.menu-security-light__two-factor div.subhead,
.menu-security-light__change-password div.pass-hint,
.menu-security-light__history__card,
.menu-security-light__history__head,
.menu-security__google-auth div.input-title,
.menu-security__google-auth div.codetext,
.menu-security__google-auth div.desc,
.menu-security__two-factor__options div div.subtitle,
.menu-security__two-factor div.subhead,
.menu-security__change-password div.pass-hint,
.menu-security__history__card,
.menu-security__history__head,
.menu-finance-light__card div.right,
.menu-finance-light__card div.value,
.menu-finance-light__card div.bank-info,
.menu-finance__card div.right,
.menu-finance__card div.value,
.menu-finance__card div.bank-info,
.menu-account-light__body div.val,
.menu-account__body div.val,
.menu-detail__body div.item div,
.menu-page-light__header div.accepted,
.menu-page-light__body div.version,
.menu-page-light__body div.item div,
.menu-page__header div.accepted,
.menu-page__body div.version,
.menu-page__body div.item div,
.main__hamster__right-section .title,
.main__text p,
.main__bottom-dl div,
.main__login__subtitle,
.main__blog__item h3,
.main__invest__text,
.main__desc__text,
.main__top h2,
.invitation-popup__body div.bar,
.invitation-popup__body p.text.subtitle,
.invitation__stats,
.invitation__list__links div.card span,
.invitation__top,
.user-level__top,
.receive-gift-light__page1,
.create-gift-light__fields div.texts span,
.create-gift-light__fields span.texts,
.create-gift-light__top,
.gift-cards-light__cards__list div.item div.card-title,
.gift-cards-light__cards__list div.item div.curr,
.gift-cards-light__cards__list div.item div.amount,
.gift-light__cards div.list div.item div.card-title,
.gift-light__cards div.list div.item div.curr,
.gift-light__cards div.list div.item div.amount,
.gift-light__top,
.receive-gift__page1,
.create-gift__fields div.texts span,
.create-gift__fields span.texts,
.create-gift__top,
.gift-cards__cards__list div.item div.card-title,
.gift-cards__cards__list div.item div.curr,
.gift-cards__cards__list div.item div.amount,
.gift__cards div.list div.item div.card-title,
.gift__cards div.list div.item div.curr,
.gift__cards div.list div.item div.amount,
.gift__top,
.aboutus__cards__card div p,
.aboutus__middle p,
.aboutus__top,
.trade-validation-popup-light__row2 div,
.trade-mobile-guide-light__body__desc,
.trade-mobile-guide-light__body__title,
.trade-tablet-light__top__left div.item span,
.trade-tablet-light__top__left div.alert,
.trade-tablet-light__top__right div span.code,
.trade-setting-light div.row div.right,
.trade-light__user-match-card div.row1__market div.title-fa,
.trade-light__user-order-card div.row1__market div.title-fa,
.trade-light__user-order-card div.percent,
.trade-light__card1 div.output div span.key,
.trade-light__card1 div.input-title,
.trade-light__matches div.list div,
.trade-light__matches div.header,
.trade-light__orders__list div.row,
.trade-light__orders__list-header,
.trade-light__tab div.list,
.trade-validation-popup__row2 div,
.trade-mobile-guide__body__desc,
.trade-mobile-guide__body__title,
.trade-tablet__top__left div.item span,
.trade-tablet__top__left div.alert,
.trade-tablet__top__right div span.code,
.trade-setting div.row div.right,
.trade-detail__top div.left span.key,
.trade-mobile__top div.right,
.trade__user-match-card div.row1__market div.title-fa,
.trade__user-order-card div.row1__market div.title-fa,
.trade__user-order-card div.percent,
.trade__card1 div.output div span.key,
.trade__card1 div.input-title,
.trade__matches div.list div,
.trade__matches div.header,
.trade__orders__list div.row,
.trade__orders__list-header,
.trade__tab div.list,
.trade-markets__list__item div.price,
.trade-markets-table .price-change-label,
.trade-markets-table,
.support-page__top,
.create-address-book__input-title,
.bitpinland__bitpinland-it div.desc,
.bitpinland__bitpinland-it div.title-row div.title,
.bitpinland__reward-item div.title,
.bitpinland__invite,
.bitpinland__desc div,
.bitpinland__top__box div,
.history-detail-popup-light__state,
.history-detail-popup-light__row1,
.history-page-light__deposit__card div.bottom div.network span,
.history-page-light__deposit__card div.top__left div.state,
.history-page-light__order__card div.row3__left div,
.history-page-light__order__card div.row3__right div,
.history-page-light__order__card div.row2 div.item div,
.history-page-light__order__card div.row1__order-info div,
.history-page-light__order__card div.row1__time,
.history-deposit-tracker-list__tracker-card .cell .val,
.history-deposit-tracker-list__tracker-card .cell .key,
.history-detail-popup__state,
.history-detail-popup__row1,
.history-page__deposit__card div.bottom div.network span,
.history-page__deposit__card div.top__left div.state,
.history-page__order__card div.row3__left div,
.history-page__order__card div.row3__right div,
.history-page__order__card div.row2 div.item div,
.history-page__order__card div.row1__order-info div,
.history-page__order__card div.row1__time,
.withdraw-verify-light__save,
.withdraw-verify-light__out div,
.withdraw-verify__save,
.withdraw-verify__out div,
.withdraw-page-light__out,
.withdraw-page-light__input-title,
.withdraw-page__out,
.withdraw-page__input-title,
.otc-insuff__input-title span,
.otc-wallet__commission,
.otc-wallet__input-title,
.otc-wallet__title,
.otc-chart__options__interval div.item,
.otc-chart__price-info,
.otc-lazy__body div.factor,
.otc-bank-limit__body div.amount,
.otc-bank-limit__body p.title,
.otc-result__data div,
.otc__risk-popup__body p.text,
.otc__row,
.otc__input-title span.title,
.otc__markets__title span,
.wallet-remaining-light__empty p,
.wallet-remaining-light__bottom div.out span.value,
.wallet-remaining-light__list__item div.values,
.wallet-remaining-light__list__item div.info span.code,
.wallet-remaining__empty p,
.wallet-remaining__bottom div.out span.value,
.wallet-remaining__list__item div.values,
.wallet-remaining__list__item div.info span.code,
.wallet-price-type-light,
.wallet-price-type,
.wallet-loan-section-light__loans__row span.val,
.wallet-loan-section-light__loans__row span.key,
.wallet-loan-section__loans__row span.val,
.wallet-loan-section__loans__row span.key,
.wallet-main-section-light__list__desktop-item div.buttons,
.wallet-main-section-light__list__desktop-item div.value div.val-total,
.wallet-main-section-light__list__mobile-item div.val-total,
.wallet-main-section-light__list__mobile-item div.info span.code,
.wallet-main-section__info-modal p,
.wallet-main-section__list__desktop-item div.buttons,
.wallet-main-section__list__desktop-item div.value div.val-total,
.wallet-main-section__list__mobile-item div.val-total,
.wallet-main-section__list__mobile-item div.info span.code,
.wallet-landing-section-light__item div.left,
.wallet-landing-section__item div.left,
.wallet-balance-section-light__balance-trend div.balance,
.wallet-balance-section__balance-trend div.balance,
.pre-deposit-wallet-light__empty div,
.pre-deposit-wallet__empty div,
.auth-light__end__features div.item,
.auth-light__landing__progress__text div.subtitle,
.auth-light__landing__subtitle,
.auth-light__start__part1__requirments div.card,
.auth-light__start__part1__features div.card,
.auth-light__start__part1__title div,
.auth-light__wrapper__info-text,
.auth-light__wrapper__error-text,
.auth-light__wrapper__handwriting-text,
.auth-light__wrapper__confirm-type.disable .tick-button span,
.auth-light__wrapper__confirm-type div.desc,
.auth-light__wrapper__input-title,
.auth-light__wrapper__title,
.auth__end__features div.item,
.auth__landing__progress__text div.subtitle,
.auth__landing__subtitle,
.auth__start__part1__requirments div.card,
.auth__start__part1__features div.card,
.auth__start__part1__title div,
.auth__wrapper__info-text,
.auth__wrapper__error-text,
.auth__wrapper__handwriting-text,
.auth__wrapper__confirm-type.disable .tick-button span,
.auth__wrapper__confirm-type div.desc,
.auth__wrapper__input-title,
.auth__wrapper__title {
    font-size: 12px;
    font-weight: 400
}

.regular14,
.loan-dropdown-light__body div.title,
.loan-dropdown__body div.title,
.network-dropdown-light__list div.item,
.network-dropdown-light__body div.title,
.network-dropdown__list div.item,
.network-dropdown__body div.title,
.market-dropdown__list div.item,
.market-dropdown__body div.title,
.account-dropdown-light__body div.title,
.account-dropdown__body div.title,
.dropdown1__list div.item,
.dropdown1__body div.title,
.rate-popup-light__title,
.rate-popup__title,
.input8-light__text,
.input8__text,
.loan-calc-light__output span.key,
.loan-calc-light__output div.val,
.loan-calc-light__collateral__item div.ltv,
.loan-calc__output span.key,
.loan-calc__output div.val,
.loan-calc__collateral__item div.ltv,
.loan-preview-light__output span.key,
.loan-preview-light__output div.val,
.loan-preview-light__data span.key,
.loan-preview-light__data div.val,
.loan-preview__output span.key,
.loan-preview__output div.val,
.loan-preview__data span.key,
.loan-preview__data div.val,
.loan-collateral-light__output span.key,
.loan-collateral-light__output div.val,
.loan-collateral-light__collateral span.amount,
.loan-collateral__output span.key,
.loan-collateral__output div.val,
.loan-collateral__collateral span.amount,
.loan-landing-light__calc__output span.key,
.loan-landing-light__calc__output div.val,
.loan-landing__calc__output span.key,
.loan-landing__calc__output div.val,
.app-download__scan__text,
.not-found__body div.subtitle,
.main__hamster__right-section .pin,
.invitation__list__links div.item,
.user-level__levels div p,
.gift-detail-light__middle,
.gift-light__cards__empty,
.gift-detail__middle,
.gift__cards__empty,
.trade-validation-popup-light__row3 div,
.trade-sub-wallet__tabs,
.trade-validation-popup__row3 div,
.bitpinland__bitpinland-it div.time div.remain-time span,
.bitpinland__bitpinland-it div.title-row div.gift-title,
.history-detail-popup-light__currency span.en,
.history-detail-popup__currency span.en,
.wallet-loan-section-light__collaterals__row div.info,
.wallet-loan-section__collaterals__row div.info,
.wallet-balance-section-light__row1 div.right,
.wallet-balance-section__row1 div.right,
.pre-deposit-wallet-light__options div.option,
.pre-deposit-wallet-light__row1 div.right,
.pre-deposit-wallet__options div.option,
.pre-deposit-wallet__row1 div.right {
    font-weight: 400;
    font-size: 14px
}

.regular16,
.input9-light__input,
.input9__input,
.input8-light__title,
.input8__title,
.input7-light__input,
.input7__input,
.input6-light__input,
.input6__input,
.input5-light__input,
.input5__input,
.input4__input,
.input3__input,
.input1-light input,
.input1 input,
.calender input,
.loan-landing-light__calc__buttons div.vency,
.loan-landing__calc__buttons div.vency,
.update-page,
.rotate-page,
.main__floating-bar__markets__list div.change,
.main__floating-bar__markets__list div.price,
.main__floating-bar__markets__list div.title_fa,
.wallet-balance-section-light__total-balance span,
.wallet-balance-section__total-balance span,
.pre-deposit-wallet-light__balance span,
.pre-deposit-wallet__balance span {
    font-weight: 400;
    font-size: 16px
}

.bold12,
.loan-dropdown-light__body__value span,
.loan-dropdown__body__value span,
.tab1-light__header,
.tab1__header,
.element8-light__list div.row div,
.element8__list div.row div,
.element7__list div.row div h3,
.popup5__body p.popup-title,
.popup4-light__body p.title,
.popup4__body p.title,
.popup2-light__body p.title,
.popup2__body p.title,
.popup1-light__body p.title,
.popup1__body p.title,
.switch3 div,
.switch1,
.hamster-token-result-page__info-modal h2,
.loan-calc-light__installment__head,
.loan-calc__installment__head,
.loan-desktop-card-light__header,
.loan-mobile-card-light__head div.code span.key,
.loan-desktop-card__header,
.loan-mobile-card__head div.code span.key,
.loan-collateral-light__balance-box span.coin-title,
.loan-collateral__balance-box span.coin-title,
.loan-landing-light__list2 div.number span,
.loan-landing__list2 div.number span,
.loan-insuff-popup-light__title,
.loan-insuff-popup__title,
.installment-popup-light__list__head,
.installment-popup__list__head,
.loan-header-light,
.loan-header,
.loan-light__body__data div.options div,
.loan__body__data div.options div,
.knh-asset-chart div.title,
.knh-page__part1__item div.val,
.notif-page__card div.right,
.price-alert-light__list__item div.market,
.price-alert__list__item div.market,
.api-keys__keys div.key-title,
.api-page__list div.bottom div.api-key,
.api-page__list div.top,
.menu-account-light__body div.key,
.menu-account__body div.key,
.main__top-btns div.desktop-buttons div.item,
.invitation-popup__body div.header,
.user-level__levels div span,
.trade-tablet-light__top__right div.price,
.trade-tablet-light__top__right div.title_fa,
.trade-setting-light div.title,
.trade-light__tab div.wrapper div.tab,
.trade-tablet__top__right div.price,
.trade-tablet__top__right div.title_fa,
.trade-setting div.title,
.trade__tab div.wrapper div.tab,
.trade-markets__list__item div.info span.title_fa,
.history-tab-light__item,
.history-page-light__deposit__header,
.history-page-light__order__header,
.history-tab__item,
.history-page__deposit__header,
.history-page__order__header,
.otc-chart__options__title,
.otc-chart__title,
.otc-result__body p.title,
.wallet-remaining-light__bottom div.out span,
.wallet-remaining-light__header div,
.wallet-remaining__bottom div.out span,
.wallet-remaining__header div,
.wallet-loan-section-light__collaterals__row div.amounts,
.wallet-loan-section__collaterals__row div.amounts,
.wallet-main-section-light__list__desktop-item div.value div,
.wallet-main-section-light__list__desktop-item div.info span.code,
.wallet-main-section-light__list__mobile-item div.total,
.wallet-main-section__info-modal h2,
.wallet-main-section__list__desktop-item div.value div,
.wallet-main-section__list__desktop-item div.info span.code,
.wallet-main-section__list__mobile-item div.total,
.wallet-landing-section-light__item div.right,
.wallet-landing-section__item div.right,
.auth-alert,
.auth-light__end__subtitle,
.auth-light__start__part1__requirments div.title,
.auth-light__start__part1__features div.title,
.auth-light__progress div.item,
.auth__end__subtitle,
.auth__start__part1__requirments div.title,
.auth__start__part1__features div.title,
.auth__progress div.item {
    font-size: 12px;
    font-weight: 500
}

.bold14,
.account-dropdown-light__list__button,
.account-dropdown__list__button,
.markets-popup-light__list div span.title,
.markets-popup__list div span.title,
.popup7-light__body p.title,
.popup7__body p.title,
.button6__title,
.button5__title,
.button4__title,
.button3__title,
.button2__title,
.button1__title,
.currencies-card__more,
.support-ticket__text1,
.loan-calc-light__collateral__item div.currency,
.loan-calc__collateral__item div.currency,
.loan-desktop-card-light__card span.btn,
.loan-mobile-card-light__body__item span.btn,
.loan-desktop-card__card span.btn,
.loan-mobile-card__body__item span.btn,
.loan-preview-light__data div.installment,
.loan-preview__data div.installment,
.loan-collateral-light__balance-box span.increase-balance,
.loan-collateral__balance-box span.increase-balance,
.loan-landing-light__list2 div.item span.title,
.loan-landing-light__list1 div.item h2.title,
.loan-landing-light__buttons div.options div,
.loan-landing__list2 div.item span.title,
.loan-landing__list1 div.item h2.title,
.loan-landing__buttons div.options div,
.increase-collateral-light__out div.increase-row,
.increase-collateral__out div.increase-row,
.loan-tab-light__item,
.loan-tab__item,
.knh-page__part3 div.btn,
.knh-page__top__item div.val,
.notif-page__body__popup-options div.popup-more,
.ios-dl__title,
.qr-scanner p.title,
.api-page__doc span,
.menu-security-light__two-factor__switch-wrapper span,
.menu-security__two-factor__switch-wrapper span,
.menu-account-light__head,
.menu-account__head,
.menu-page-light__header div.btn,
.menu-page-light__header div.fullname,
.menu-page__header div.btn,
.menu-page__header div.fullname,
.main__hamster button,
.main__text h2,
.main__text h1,
.invitation-popup__body p.text,
.invitation-popup__body span.title,
.invitation__stats__link div.row,
.gift-light__cards div.buttons span.title,
.gift__cards div.buttons span.title,
.aboutus__cards__card div span,
.trade-validation-popup-light__row1__market,
.trade-light__user-panel__more,
.trade-light__orders__match-price,
.trade-validation-popup__row1__market,
.trade-detail__top div.right,
.trade-mobile__top div.left,
.trade__user-panel__more,
.trade__orders__match-price,
.support-page__text,
.address-card div.title,
.choose-address__title,
.bitpinland__reward-empty,
.bitpinland__bitpinland-it div.time div.time-text,
.bitpinland__reward-item div.gift-title,
.history-report-light__header span.delete,
.history-filter-light__buttons span.delete,
.history-filter-light__header span.delete,
.history-tab-light__title,
.history-page-light__deposit__card div.bottom div.more,
.history-page-light__deposit__card div.top__right div.currency span.fa,
.history-page-light__deposit__card div.top__left div.amount,
.history-page-light__order__card div.row1__market-info div.fa,
.history-page-light__more,
.history-page-light__download,
.history-report__header span.delete,
.history-filter__buttons span.delete,
.history-filter__header span.delete,
.history-tab__title,
.history-page__deposit__card div.bottom div.more,
.history-page__deposit__card div.top__right div.currency span.fa,
.history-page__deposit__card div.top__left div.amount,
.history-page__order__card div.row1__market-info div.fa,
.history-page__more,
.history-page__download,
.withdraw-verify-light__body p.title,
.withdraw-verify__body p.title,
.otc-insuff__top,
.otc__risk-popup__body button.more-button,
.wallet-remaining-light__list__item div.info span,
.wallet-remaining__list__item div.info span,
.wallet-loan-section-light__list-header,
.wallet-loan-section__list-header,
.wallet-main-section-light__list__desktop-item div.info span.title_fa,
.wallet-main-section-light__list__mobile-item div.info span.title_fa,
.wallet-main-section-light__list-header,
.wallet-main-section-light__options div.remain,
.wallet-main-section__list__desktop-item div.info span.title_fa,
.wallet-main-section__list__mobile-item div.info span.title_fa,
.wallet-main-section__list-header,
.wallet-main-section__options div.remain,
.wallet-balance-section-light__row1 div.knh span,
.wallet-balance-section__row1 div.knh span,
.pre-deposit-wallet-light__row1 div.knh span,
.pre-deposit-wallet__row1 div.knh span,
.auth-light__landing__btn,
.auth-light__landing__progress__text div.title,
.auth-light__start__part1__title span.title,
.auth-light__wrapper__handwriting-title,
.auth-light__wrapper__upload-image,
.auth__landing__btn,
.auth__landing__progress__text div.title,
.auth__start__part1__title span.title,
.auth__wrapper__handwriting-title,
.auth__wrapper__upload-image {
    font-size: 14px;
    font-weight: 500
}

.bold16,
.element7__head,
.element4-light,
.element4,
.header5 h1,
.header4 h1,
.header3 h1,
.header1 h1,
.input10-light__wrapper input,
.input10__wrapper input,
.input8-light__input,
.input8__input,
.loan-calc-light__collateral__item div.amount,
.loan-calc__collateral__item div.amount,
.loan-detail-popup-light div.title,
.loan-detail-popup div.title,
.loan-collateral-light__collateral span.title,
.loan-collateral__collateral span.title,
.increase-collateral-light div.title,
.increase-collateral div.title,
.increase-loan-balance-light div.title,
.increase-loan-balance div.title,
.loan-verify-popup div.title,
.installment-popup-light div.title,
.installment-popup div.title,
.knh-page__part4 div.title,
.knh-page__part2 div.title,
.knh-page__part1 div.title,
.app-download__data p.sub-title,
.api-detail-page__head,
.main__blog__title,
.main__desc__title,
.invitation__stats__box div span.key,
.invitation__stats__link span.title,
.invitation__list span.head,
.invitation__nocodes__mid,
.gift-light__top__header h5,
.gift__top__header h5,
.aboutus__text,
.aboutus__middle span,
.aboutus__top__header,
.trade-validation-popup-light__head,
.trade-light__matches div.listtitle,
.trade-light__orders__sort-header div.title,
.trade-validation-popup__head,
.trade__matches div.listtitle,
.trade__orders__sort-header div.title,
.support-page__top__header,
.create-address-book__header,
.address-book-list__header,
.bitpinland__bitpinland-it div.chance,
.bitpinland__bitpinland-cat div.cat,
.bitpinland__bitpinland-empty,
.history-filter-light__header span.title,
.history-detail-popup-light__amount,
.history-deposit-tracker-list__list-section__refresh .text,
.history-filter__header span.title,
.history-detail-popup__amount,
.withdraw-page-light__header,
.withdraw-page__header,
.otc-wallet__currency span,
.otc-chart__header,
.otc__head h1,
.wallet-remaining-light__header P,
.wallet-remaining__header P,
.wallet-landing-section-light__title,
.wallet-landing-section__title,
.auth-light__end__title,
.auth-light__landing__title,
.auth-light__header,
.auth__end__title,
.auth__landing__title,
.auth__header {
    font-size: 16px;
    font-weight: 500
}

.bold24,
.api-page__top div.title,
.wallet-balance-section-light__total-balance span.amount,
.wallet-balance-section__total-balance span.amount,
.pre-deposit-wallet-light__balance span.amount,
.pre-deposit-wallet__balance span.amount {
    font-size: 24px;
    font-weight: 500
}

.bold20,
.support-ticket__head,
.loan-landing-light__cat-head,
.loan-landing-light__title,
.loan-landing__cat-head,
.loan-landing__title,
.loan-tab-light__title,
.loan-tab__title,
.knh-page__head,
.not-found__body div.title,
.api-page__list-head,
.menu-detail__desktop-head,
.rules__body div.title,
.main__login__title,
.main__invest__title,
.main__top div.title__header,
.main__top-pro__price__title span,
.main__top-pro__price div.total,
.invitation__stats__box div span,
.invitation__top__header,
.user-level__top__header,
.trade-setting-light div.head,
.trade-setting div.head,
.bitpinland__top__header,
.history-detail-popup-light__currency span.fa,
.history-detail-popup__currency span.fa {
    font-size: 20px;
    font-weight: 500
}

.bold32,
.app-download__data h1.title {
    font-size: 32px;
    font-weight: 500
}

.bolder16 {
    font-weight: 700;
    font-size: 16px
}

.bolder20 {
    font-weight: 700;
    font-size: 20px
}

.bolder24 {
    font-weight: 700;
    font-size: 24px
}

.row-between,
.loan-dropdown-light__list div.item,
.loan-dropdown__list div.item,
.account-dropdown-light__list div.item,
.account-dropdown__list div.item,
.dropdown1__list div.item,
.table1-light__row,
.table1__row,
.tab1-light__header,
.tab1__header,
.element11-light__range,
.element11__range,
.rate-popup-light__btns,
.rate-popup__btns,
.otp-verify-popup__item,
.markets-popup-light__list div.item,
.markets-popup__list div.item,
.popup5__body div.buttons,
.input10-light__wrapper,
.input10__wrapper,
.input8-light__body,
.input8__body,
.currencies-card__item,
.loan-calc-light__buttons,
.loan-calc-light__output div.row,
.loan-calc-light__installment__lazy__row,
.loan-calc-light__installment__list div.item,
.loan-calc-light__installment__head,
.loan-calc-light__collateral__item div.ltv,
.loan-calc-light__collateral__item div.currency,
.loan-calc__buttons,
.loan-calc__output div.row,
.loan-calc__installment__lazy__row,
.loan-calc__installment__list div.item,
.loan-calc__installment__head,
.loan-calc__collateral__item div.ltv,
.loan-calc__collateral__item div.currency,
.loan-detail-popup-light__buttons,
.loan-detail-popup-light__row1,
.loan-desktop-card-light__card,
.loan-desktop-card-light__header,
.loan-mobile-card-light__body__item,
.loan-mobile-card-light__body,
.loan-mobile-card-light__head div.code,
.loan-mobile-card-light__head,
.loan-detail-popup__buttons,
.loan-detail-popup__row1,
.loan-desktop-card__card,
.loan-desktop-card__header,
.loan-mobile-card__body__item,
.loan-mobile-card__body,
.loan-mobile-card__head div.code,
.loan-mobile-card__head,
.loan-preview-light__buttons,
.loan-preview-light__output div.row,
.loan-preview-light__data div.row,
.loan-preview__buttons,
.loan-preview__output div.row,
.loan-preview__data div.row,
.loan-collateral-light__buttons,
.loan-collateral-light__output div.row,
.loan-collateral-light__price div.row,
.loan-collateral-light__balance-box div.row2,
.loan-collateral-light__balance-box div.row1,
.loan-collateral__buttons,
.loan-collateral__output div.row,
.loan-collateral__price div.row,
.loan-collateral__balance-box div.row2,
.loan-collateral__balance-box div.row1,
.loan-landing-light__list1,
.loan-landing-light__calc__buttons,
.loan-landing-light__calc__output div.row,
.loan-landing-light__buttons div.options,
.loan-landing__list1,
.loan-landing__calc__buttons,
.loan-landing__calc__output div.row,
.loan-landing__buttons div.options,
.increase-collateral-light__out div.balance-row,
.increase-collateral__out div.balance-row,
.loan-verify-popup__buttons,
.loan-verify-popup__row1,
.installment-popup-light__list__list div.item,
.installment-popup-light__list__head,
.installment-popup__list__list div.item,
.installment-popup__list__head,
.loan-header-light,
.loan-header,
.knh-page__part3 div.percent div.start-end,
.knh-page__part3 div.next-level,
.knh-page__part3 div.row,
.knh-page__part2 div.wrapper,
.knh-page__part1__row,
.knh-page__top__row,
.notif-page__card div.row1,
.notif-page__body__popup-options,
.price-alert-light__buttons,
.price-alert-light__list__item div.bottom,
.price-alert-light__list__item,
.price-alert__buttons,
.price-alert__list__item div.bottom,
.price-alert__list__item,
.app-download__scan,
.app-download__download,
.app-download__top,
.api-detail-page div.input-row,
.api-page__list div.top,
.menu-security-light__two-factor__options div.item,
.menu-security-light__history__card,
.menu-security-light__history__lazy,
.menu-security-light__history__head,
.menu-security__two-factor__options div.item,
.menu-security__history__card,
.menu-security__history__lazy,
.menu-security__history__head,
.menu-finance-light__card,
.menu-finance__card,
.menu-detail__head div.row,
.menu-detail__desktop-head div,
.menu-detail__desktop-head,
.menu-page-light__header div.row2,
.menu-page-light__header div.row1,
.menu-page__header div.row2,
.menu-page__header div.row1,
.main__bottom-dl,
.main__download,
.main__blog__list,
.main__floating-bar__markets__list,
.main__top-pro,
.invitation-popup__body div.percents,
.invitation-popup__body div.bar,
.invitation__stats__box div,
.invitation__stats__link div.percents,
.invitation__list__links div.card div.row,
.invitation__list__links div.item,
.create-gift-light__fields div.texts,
.gift-light__top__buttons,
.create-gift__fields div.texts,
.gift__top__buttons,
.trade-validation-popup-light__buttons,
.trade-validation-popup-light__row3,
.trade-validation-popup-light__row2,
.trade-validation-popup-light__row1,
.trade-desktop-light__middle__left__wrapper,
.trade-desktop-light__middle__pro,
.trade-desktop-light__middle,
.trade-desktop-light__body__classic__bottom,
.trade-tablet-light__middle,
.trade-tablet-light__top,
.trade-setting-light div.row,
.trade-detail-light__top,
.trade-light__user-match-card div.row2,
.trade-light__user-match-card div.row1,
.trade-light__user-order-card div.row2,
.trade-light__user-order-card div.row1,
.trade-light__card1 div.output,
.trade-light__card1 div.input-title,
.trade-light__card3__twin,
.trade-light__matches div.list div,
.trade-light__matches div.header,
.trade-light__orders__list div.row,
.trade-light__orders__box div,
.trade-light__orders__list-header,
.trade-light__orders__sort-header,
.trade-light__tab,
.trade-sub-wallet__tabs,
.trade-validation-popup__buttons,
.trade-validation-popup__row3,
.trade-validation-popup__row2,
.trade-validation-popup__row1,
.trade-desktop__middle__left__wrapper,
.trade-desktop__middle__pro,
.trade-desktop__middle,
.trade-desktop__body__classic__bottom,
.trade-tablet__middle,
.trade-tablet__top,
.trade-setting div.row,
.trade-detail__buttons,
.trade-detail__top div.right div.options,
.trade-detail__top,
.trade-mobile__middle__wrapper,
.trade-mobile__top,
.trade__user-match-card div.row2,
.trade__user-match-card div.row1,
.trade__user-order-card div.row2,
.trade__user-order-card div.row1,
.trade__card1 div.output,
.trade__card1 div.input-title,
.trade__card3__twin,
.trade__matches div.list div,
.trade__matches div.header,
.trade__orders__list div.row,
.trade__orders__box div,
.trade__orders__list-header,
.trade__orders__sort-header,
.trade__tab,
.trade-markets-table__body .row,
.trade-markets-table__header,
.address-card,
.choose-address__btns,
.create-address-book__header,
.address-book-list__header,
.history-lazy-light__row3,
.history-lazy-light__row2 div.section,
.history-lazy-light__row2,
.history-lazy-light__row1,
.history-lazy-light__desktop-item,
.history-report-light__header,
.history-filter-light__header,
.history-detail-popup-light__row1 div.val,
.history-detail-popup-light__row1,
.history-detail-popup-light__body div.close,
.history-page-light__deposit__header,
.history-page-light__deposit__desktop-card,
.history-page-light__deposit__card div.bottom,
.history-page-light__deposit__card div.top,
.history-page-light__order__header,
.history-page-light__order__desktop-card,
.history-page-light__order__card div.row3__left,
.history-page-light__order__card div.row3__right,
.history-page-light__order__card div.row2 div.item,
.history-page-light__order__card div.row1,
.history-lazy__row3,
.history-lazy__row2 div.section,
.history-lazy__row2,
.history-lazy__row1,
.history-lazy__desktop-item,
.history-report__header,
.history-filter__header,
.history-detail-popup__row1 div.val,
.history-detail-popup__row1,
.history-detail-popup__body div.close,
.history-page__deposit__header,
.history-page__deposit__desktop-card,
.history-page__deposit__card div.bottom,
.history-page__deposit__card div.top,
.history-page__order__header,
.history-page__order__desktop-card,
.history-page__order__card div.row3__left,
.history-page__order__card div.row3__right,
.history-page__order__card div.row2 div.item,
.history-page__order__card div.row1,
.withdraw-verify-light__btns,
.withdraw-verify__btns,
.withdraw-page-light__header,
.withdraw-page__header,
.otc-chart__options__interval,
.otc-chart__change,
.otc-chart__price,
.otc-chart__header,
.otc-lazy__body div.factor,
.otc-lazy__body__markets,
.otc-bank-limit__body div.amount,
.otc__head,
.wallet-loan-section-light__loans__row,
.wallet-loan-section-light__collaterals__row,
.wallet-loan-section-light__list-header,
.wallet-loan-section__loans__row,
.wallet-loan-section__collaterals__row,
.wallet-loan-section__list-header,
.wallet-main-section-light__list__mobile-item,
.wallet-main-section-light__options,
.wallet-main-section__list__mobile-item,
.wallet-main-section__options,
.wallet-landing-section-light__item,
.wallet-landing-section__item,
.wallet-balance-section-light__btns,
.wallet-balance-section-light__row1,
.wallet-balance-section__btns,
.wallet-balance-section__row1,
.pre-deposit-wallet-light__options div.option,
.pre-deposit-wallet-light__row1,
.pre-deposit-wallet__options div.option,
.pre-deposit-wallet__row1,
.wallet-lazy-light__row,
.wallet-lazy__row,
.auth-light__wrapper__upload-samples,
.auth-light__progress,
.auth-light__header,
.auth__wrapper__upload-samples,
.auth__progress,
.auth__header {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between
}

.column-between,
.header5,
.auth-light__landing__progress__line div.item,
.auth__landing__progress__line div.item {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between
}

.row-center,
.toast,
.loan-dropdown-light__list div.item div,
.loan-dropdown__list div.item div,
.market-dropdown__list__empty,
.account-dropdown-light__list__button,
.account-dropdown-light__list div.item div.bank-info,
.account-dropdown__list__button,
.account-dropdown__list div.item div.bank-info,
.dropdown1__list div.item div,
.new-tag-element,
.element5,
.rate-popup-light__title,
.rate-popup-light,
.rate-popup__title,
.rate-popup,
.markets-popup-light__list div.right,
.markets-popup__list div.right,
.popup5,
.switch1,
.button6,
.button5,
.button4,
.button3,
.button2,
.input8-light__input,
.input8__input,
.currencies-card__empty,
.banner-card__banner-loading,
.banner-card__banner div.bottom,
.loan-calc-light__output div.val,
.loan-calc-light__installment__list div.item span,
.loan-calc-light__installment__head span,
.loan-calc-light__collateral__item div.amount,
.loan-calc__output div.val,
.loan-calc__installment__list div.item span,
.loan-calc__installment__head span,
.loan-calc__collateral__item div.amount,
.loan-detail-popup-light div.title,
.loan-desktop-card-light__card div,
.loan-desktop-card-light__card span,
.loan-desktop-card-light__header span,
.loan-mobile-card-light__body__item span.val,
.my-loan-light__empty,
.loan-detail-popup div.title,
.loan-desktop-card__card div,
.loan-desktop-card__card span,
.loan-desktop-card__header span,
.loan-mobile-card__body__item span.val,
.my-loan__empty,
.loan-preview-light__output div.val,
.loan-preview-light__data div.val,
.loan-preview__output div.val,
.loan-preview__data div.val,
.loan-collateral-light__output div.val,
.loan-collateral-light__price div.val,
.loan-collateral-light__balance-box div.row2 div,
.loan-collateral__output div.val,
.loan-collateral__price div.val,
.loan-collateral__balance-box div.row2 div,
.loan-landing-light__list2 div.number span,
.loan-landing-light__list2 div.item,
.loan-landing-light__calc__output div.val,
.loan-landing-light__cat-head,
.loan-landing-light__image,
.loan-landing-light__subtitle,
.loan-landing-light__title,
.loan-landing-light__buttons div.options div,
.loan-landing__list2 div.number span,
.loan-landing__list2 div.item,
.loan-landing__calc__output div.val,
.loan-landing__cat-head,
.loan-landing__image,
.loan-landing__subtitle,
.loan-landing__title,
.loan-landing__buttons div.options div,
.increase-collateral-light div.title,
.increase-collateral-light__suggestion div.item,
.increase-collateral-light__out div.balance-row div.val,
.increase-collateral div.title,
.increase-collateral__suggestion div.item,
.increase-collateral__out div.balance-row div.val,
.increase-loan-balance-light div.title,
.increase-loan-balance-light .tick-button,
.increase-loan-balance div.title,
.increase-loan-balance .tick-button,
.loan-verify-popup div.title,
.installment-popup-light__list__list div.item span,
.installment-popup-light__list__head span,
.installment-popup-light div.title,
.installment-popup__list__list div.item span,
.installment-popup__list__head span,
.installment-popup div.title,
.loan-header-light div.box,
.loan-header div.box,
.loan-footer-light,
.loan-footer,
.loan-light__body__image,
.loan-light__body__data div.options div,
.loan__body__image,
.loan__body__data div.options div,
.knh-page__part4 div.desc,
.knh-page__part4 div.title,
.knh-page__part2 div.title,
.knh-page__part2 div.left div.item,
.knh-page__part1__item div.val,
.knh-page__part1__item div.key,
.knh-page__part1 div.desc,
.knh-page__part1 div.title,
.knh-page__top__item div.change,
.knh-page__top__item div.val,
.notif-page__card div.right,
.notif-page__card div.time,
.notif-page__body__more,
.notif-page__body__empty,
.notif-page__body__count,
.ios-dl__item div.text,
.ios-dl__item div.icon,
.ios-dl__title,
.ios-dl__logo,
.price-alert-light__input-row,
.price-alert-light__list__item div.bottom div,
.price-alert-light__list__item div.options,
.price-alert-light__list__empty,
.price-alert__input-row,
.price-alert__list__item div.bottom div,
.price-alert__list__item div.options,
.price-alert__list__empty,
.not-found__body div.subtitle,
.not-found__body div.title,
.api-keys__keys div.key,
.api-detail-page div.ip-list div,
.api-detail-page__head,
.api-page__empty,
.api-page__list div.top div,
.api-page__list div.top button,
.api-page__list-head,
.api-page__top div.title,
.menu-security-light__google-auth div.codetext,
.menu-security-light__google-auth div.codeimg,
.menu-security-light__google-auth,
.menu-security-light__history__card div,
.menu-security-light__history__head div,
.menu-security__google-auth div.codetext,
.menu-security__google-auth div.codeimg,
.menu-security__google-auth,
.menu-security__history__card div,
.menu-security__history__head div,
.menu-finance-light__card div.right,
.menu-finance-light__empty,
.menu-finance__card div.right,
.menu-finance__empty,
.menu-detail__head div.right,
.menu-page-light__header div.profile-image,
.menu-page-light__header div.right,
.menu-page__header div.profile-image,
.menu-page__header div.right,
.rules__body div.title,
.main__bottom-dl div,
.main__download div,
.main__invest__text,
.main__invest__title,
.main__floating-bar__markets__list div.change,
.main__floating-bar__markets__list div.item,
.main__desc__text,
.main__desc__title,
.invitation-popup__body div.empty,
.invitation-popup__body div.header span,
.invitation-popup__body div.header,
.invitation-popup__body div.item,
.invitation__stats__link div.row,
.gift-cards-light__cards__list div.item div.used,
.gift-light__cards div.list div.item div.used,
.gift-light__top__buttons .button1,
.gift-cards__cards__list div.item div.used,
.gift__cards div.list div.item div.used,
.gift__top__buttons .button1,
.trade-validation-popup-light__row1__market,
.trade-validation-popup-light__row1__mode,
.trade-validation-popup-light__head,
.trade-tablet-light__top__left,
.trade-tablet-light__top__right div.price div,
.trade-tablet-light__top__right div.title_fa,
.trade-tablet-light__top__right div.info,
.trade-tablet-light__top__right,
.trade-setting-light div.row div.right,
.trade-light__user-order-card div.percent__inside,
.trade-light__user-order-card div.percent,
.trade-light__user-panel__more,
.trade-light__user-panel__empty,
.trade-light__card1 div.input-title div,
.trade-light__orders__list span,
.trade-light__orders__match-price,
.trade-light__orders__sort-header div.options,
.trade-light__tab div.wrapper div.tab,
.trade-sub-wallet__tabs div,
.trade-validation-popup__row1__market,
.trade-validation-popup__row1__mode,
.trade-validation-popup__head,
.trade-tablet__top__left,
.trade-tablet__top__right div.price div,
.trade-tablet__top__right div.title_fa,
.trade-tablet__top__right div.info,
.trade-tablet__top__right,
.trade-setting div.row div.right,
.trade-detail__top div.right div,
.trade-detail__top div.left,
.trade-mobile__top div.left div,
.trade-mobile__top div.right,
.trade__user-order-card div.percent__inside,
.trade__user-order-card div.percent,
.trade__user-panel__more,
.trade__user-panel__empty,
.trade__card1 div.input-title div,
.trade__orders__list span,
.trade__orders__match-price,
.trade__orders__sort-header div.options,
.trade__tab div.wrapper div.tab,
.choose-address__image,
.address-book-list__empty,
.bitpinland__top__box,
.history-report-light,
.history-filter-light__buttons div.lottie-animation,
.history-filter-light__buttons,
.history-detail-popup-light__state,
.history-detail-popup-light__amount,
.history-detail-popup-light__currency,
.history-detail-popup-light,
.history-tab-light__list,
.history-tab-light__title,
.history-page-light__deposit__header span,
.history-page-light__deposit__desktop-card span,
.history-page-light__deposit__desktop-card div.ref div.box span,
.history-page-light__deposit__desktop-card div.ref div.box,
.history-page-light__deposit__desktop-card div.ref,
.history-page-light__deposit__desktop-card div.item,
.history-page-light__deposit__card div.top__right div.currency,
.history-page-light__deposit__card div.top__left div.state,
.history-page-light__order__header span,
.history-page-light__order__card div.row3,
.history-page-light__order__card div.row2,
.history-page-light__order__card div.row1__percent__inside,
.history-page-light__order__card div.row1__percent,
.history-page-light__more,
.history-page-light__download,
.history-page-light__empty,
.history-report,
.history-filter__buttons div.lottie-animation,
.history-filter__buttons,
.history-detail-popup__state,
.history-detail-popup__amount,
.history-detail-popup__currency,
.history-detail-popup,
.history-tab__list,
.history-tab__title,
.history-page__deposit__header span,
.history-page__deposit__desktop-card span,
.history-page__deposit__desktop-card div.ref div.box span,
.history-page__deposit__desktop-card div.ref div.box,
.history-page__deposit__desktop-card div.ref,
.history-page__deposit__desktop-card div.item,
.history-page__deposit__card div.top__right div.currency,
.history-page__deposit__card div.top__left div.state,
.history-page__order__header span,
.history-page__order__card div.row3,
.history-page__order__card div.row2,
.history-page__order__card div.row1__percent__inside,
.history-page__order__card div.row1__percent,
.history-page__more,
.history-page__download,
.history-page__empty,
.withdraw-verify-light__save,
.withdraw-verify__save,
.otc-intro__button,
.otc-chart__options__interval div.item,
.otc-chart__price div,
.otc__body,
.wallet-loan-section-light__loans__empty,
.wallet-loan-section-light__loans__row span.val,
.wallet-loan-section-light__collaterals__empty,
.wallet-loan-section-light__collaterals__row div.info,
.wallet-loan-section__loans__empty,
.wallet-loan-section__loans__row span.val,
.wallet-loan-section__collaterals__empty,
.wallet-loan-section__collaterals__row div.info,
.wallet-main-section-light__list__desktop-item,
.wallet-main-section-light__list__empty,
.wallet-main-section-light__options__right,
.wallet-main-section__list__desktop-item,
.wallet-main-section__list__empty,
.wallet-main-section__options__right,
.wallet-landing-section-light__item div.left,
.wallet-landing-section-light__item div.right,
.wallet-landing-section__item div.left,
.wallet-landing-section__item div.right,
.wallet-balance-section-light__balance-trend div.balance div.val,
.wallet-balance-section-light__total-balance div.wrapper,
.wallet-balance-section-light__row1 div.right,
.wallet-balance-section-light__row1 div.knh,
.wallet-balance-section__balance-trend div.balance div.val,
.wallet-balance-section__total-balance div.wrapper,
.wallet-balance-section__row1 div.right,
.wallet-balance-section__row1 div.knh,
.pre-deposit-wallet-light__options div.option div,
.pre-deposit-wallet-light__row1 div.right,
.pre-deposit-wallet-light__row1 div.knh,
.pre-deposit-wallet__options div.option div,
.pre-deposit-wallet__row1 div.right,
.pre-deposit-wallet__row1 div.knh,
.auth-light__end__features div.item,
.auth-light__end__subtitle,
.auth-light__end__title,
.auth-light__landing__btn,
.auth-light__landing__progress__line div.item div.circle,
.auth-light__landing__progress__line div.item div.tick,
.auth-light__landing__progress,
.auth-light__landing__subtitle,
.auth-light__landing__title,
.auth-light__landing__image,
.auth-light__start__part1__wrapper__line,
.auth-light__start__part1__title div span,
.auth-light__start__part1__title div,
.auth-light__wrapper__handwriting-button,
.auth-light__progress div.title,
.auth__end__features div.item,
.auth__end__subtitle,
.auth__end__title,
.auth__landing__btn,
.auth__landing__progress__line div.item div.circle,
.auth__landing__progress__line div.item div.tick,
.auth__landing__progress,
.auth__landing__subtitle,
.auth__landing__title,
.auth__landing__image,
.auth__start__part1__wrapper__line,
.auth__start__part1__title div span,
.auth__start__part1__title div,
.auth__wrapper__handwriting-button,
.auth__progress div.title {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center
}

.row-justify-end,
.rate-popup-light__close,
.rate-popup__close,
.markets-popup-light__close,
.markets-popup__close,
.switch4-light__list div.wrapper2,
.switch4__list div.wrapper2,
.header5 div,
.input8-light,
.input8,
.calender__close,
.banner-card__list div.wrapper2,
.loan-detail-popup-light div.close,
.loan-detail-popup div.close,
.loan-preview-light__data div.installment,
.loan-preview__data div.installment,
.loan-insuff-popup-light div.close,
.loan-insuff-popup div.close,
.increase-collateral-light div.close,
.increase-collateral-light__suggestion div.wrapper2,
.increase-collateral-light__out div.increase-row,
.increase-collateral div.close,
.increase-collateral__suggestion div.wrapper2,
.increase-collateral__out div.increase-row,
.increase-loan-balance-light div.close,
.increase-loan-balance div.close,
.loan-verify-popup div.close,
.installment-popup-light div.close,
.installment-popup div.close,
.notif-page__card div.more,
.price-alert-light__close,
.price-alert__close,
.app-download__download div,
.api-keys__keys div.key-title,
.api-page__list div.bottom div.key,
.api-page__list div.bottom div.api-key,
.menu-security-light__google-auth div.close,
.menu-security__google-auth div.close,
.trade-validation-popup-light__close,
.trade-mobile-guide-light__body div.close,
.trade-setting-light div.close,
.trade-validation-popup__close,
.trade-mobile-guide__body div.close,
.trade-setting div.close,
.history-page-light__options,
.history-page__options,
.wallet-main-section-light__list__desktop-item div.buttons,
.wallet-main-section-light__list__mobile-item div.total,
.wallet-main-section-light__list__mobile-item div.val-total,
.wallet-main-section__list__desktop-item div.buttons,
.wallet-main-section__list__mobile-item div.total,
.wallet-main-section__list__mobile-item div.val-total,
.wallet-balance-section-light__wrapper__left,
.wallet-balance-section__wrapper__left {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: flex-end
}

.row-justify-start,
.loan-dropdown-light__body__value,
.loan-dropdown__body__value,
.rate-popup-light__title2,
.rate-popup__title2,
.switch4-light__list div.wrapper1,
.switch4__list div.wrapper1,
.tick-button p,
.input6-light__error,
.input6__error,
.input5-light__error,
.input5__error,
.input3__error,
.input3__bottom,
.input1-light__bottom,
.input1-light__error,
.input1__bottom,
.input1__error,
.currencies-card__item div.info,
.currencies-card__header div.info,
.currencies-card__header,
.banner-card__list div.wrapper1,
.loan-calc-light__collateral,
.loan-calc__collateral,
.loan-detail-popup-light__hint,
.loan-detail-popup__hint,
.loan-collateral-light__balance-box div.collateral,
.loan-collateral-light__collateral,
.loan-collateral__balance-box div.collateral,
.loan-collateral__collateral,
.loan-landing-light__calc__buttons div.vency,
.loan-landing__calc__buttons div.vency,
.loan-insuff-popup-light__title,
.loan-insuff-popup__title,
.increase-collateral-light__suggestion div.wrapper1,
.increase-collateral-light__out div.enough-row,
.increase-collateral-light__error,
.increase-collateral__suggestion div.wrapper1,
.increase-collateral__out div.enough-row,
.increase-collateral__error,
.loan-verify-popup__hint,
.loan-verify-popup div.subtitle,
.knh-asset-chart div.title,
.ios-dl__item,
.price-alert-light__media,
.price-alert-light__input-title,
.price-alert__media,
.price-alert__input-title,
.app-download__download div.right,
.app-download__data p.sub-title,
.app-download__data h1.title,
.api-detail-page div.ip-list,
.api-page__doc,
.menu-account-light__head,
.menu-account__head,
.menu-detail__body div.item,
.menu-page-light__body div.item,
.menu-page__body div.item,
.main__top-pro__price__title,
.main__top-btns div.desktop-buttons,
.receive-gift-light__page2 div.texts p.desktop-title,
.receive-gift__page2 div.texts p.desktop-title,
.trade-mobile-guide-light__body__options,
.trade-light__tab div.wrapper,
.trade-mobile-guide__body__options,
.trade__tab div.wrapper,
.address-card div.right,
.bitpinland__bitpinland-it div.chance,
.history-page-light__order__card div.row1__order-info,
.history-page-light__order__card div.row1__market-info,
.history-page__order__card div.row1__order-info,
.history-page__order__card div.row1__market-info,
.otc-lazy__body div.row2 div.input-box,
.otc-lazy__body__markets div.item,
.wallet-main-section-light__list-header,
.wallet-main-section__list-header,
.wallet-balance-section-light__balance-trend div.balance,
.wallet-balance-section-light__total-balance,
.wallet-balance-section__balance-trend div.balance,
.wallet-balance-section__total-balance,
.pre-deposit-wallet-light__balance,
.pre-deposit-wallet__balance,
.auth-light__start__part1__requirments div.card,
.auth-light__start__part1__requirments div.title,
.auth-light__start__part1__features div.card,
.auth-light__start__part1__features div.title,
.auth-light__start__part1__wrapper,
.auth-light__start__part1__title,
.auth-light__wrapper__handwriting-text,
.auth__start__part1__requirments div.card,
.auth__start__part1__requirments div.title,
.auth__start__part1__features div.card,
.auth__start__part1__features div.title,
.auth__start__part1__wrapper,
.auth__start__part1__title,
.auth__wrapper__handwriting-text {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: flex-start
}

.column-center,
.loan-dropdown-light__list__children,
.loan-dropdown__list__children,
.network-dropdown-light__list__children,
.network-dropdown__list__children,
.market-dropdown__list__children,
.account-dropdown-light__list__children,
.account-dropdown__list__children,
.dropdown1__list__children,
.chart,
.rate-popup-light__nok,
.rate-popup-light__body,
.rate-popup__nok,
.rate-popup__body,
.popup7-light,
.popup7,
.calender__wrapper.modal,
.calender__icon,
.banner-card__banner div.item,
.lazy-1-light,
.lazy-1,
.loan-calc-light__output,
.loan-calc-light__installment,
.loan-calc__output,
.loan-calc__installment,
.loan-detail-popup-light,
.loan-detail-popup,
.loan-preview-light__output,
.loan-preview-light__data,
.loan-preview__output,
.loan-preview__data,
.loan-collateral-light__output,
.loan-collateral-light__price,
.loan-collateral__output,
.loan-collateral__price,
.loan-landing-light__calc__output,
.loan-landing__calc__output,
.loan-insuff-popup-light,
.loan-insuff-popup,
.increase-collateral-light,
.increase-collateral,
.increase-loan-balance-light,
.increase-loan-balance,
.loan-verify-popup,
.installment-popup-light__list,
.installment-popup-light,
.installment-popup__list,
.installment-popup,
.loan-tab-light__item,
.loan-tab__item,
.knh-asset-chart,
.knh-page__part1__item,
.knh-page__part1__result,
.knh-page__top__item,
.knh-page__top,
.update-page,
.ios-dl__list,
.app-download__data,
.qr-scanner,
.rotate-page div,
.rotate-page,
.api-keys,
.menu-security-light__google-auth__body,
.menu-security-light__two-factor__options div.right,
.menu-security-light__two-factor__body,
.menu-security-light__history__card div.time,
.menu-security__google-auth__body,
.menu-security__two-factor__options div.right,
.menu-security__two-factor__body,
.menu-security__history__card div.time,
.menu-finance-light__card div.bank-info,
.menu-finance__card div.bank-info,
.menu-account-light__body div.item,
.menu-account__body div.item,
.main__text,
.main__login,
.main__blog,
.main__invest,
.main__desc__wrapper,
.main__desc,
.main__top-pro__wrapper,
.main__top-btns div.desktop-buttons div.item,
.main__top-btns,
.invitation-popup__body span.icircle,
.invitation__stats__link,
.invitation__list__links div.card,
.invitation__list,
.gift-detail-light__middle,
.create-gift-light__fields,
.gift-cards-light__cards__list div.item,
.gift-light__cards__empty,
.gift-light__top__header,
.gift-detail__middle,
.create-gift__fields,
.gift-cards__cards__list div.item,
.gift__cards__empty,
.gift__top__header,
.aboutus__middle,
.trade-validation-popup-light,
.trade-mobile-guide-light__body__desc,
.trade-tablet-light__top__left div.item,
.trade-tablet-light__top__left div.alert,
.trade-tablet-light__top__right div.price,
.trade-light__user-match-card div.row1__time,
.trade-light__user-match-card div.row1__info,
.trade-light__user-match-card div.row1__market,
.trade-light__user-order-card div.row2__item,
.trade-light__user-order-card div.row1__time,
.trade-light__user-order-card div.row1__info,
.trade-light__card1 div.output div,
.trade-light__orders__box,
.trade-light__tab div.list,
.trade-validation-popup,
.trade-mobile-guide__body__desc,
.trade-tablet__top__left div.item,
.trade-tablet__top__left div.alert,
.trade-tablet__top__right div.price,
.trade-detail__top div.right div.alert,
.trade-detail__top div.right div.info,
.trade-detail__top div.right,
.trade-detail__top div.left div,
.trade-mobile__top div.left,
.trade__user-match-card div.row1__time,
.trade__user-match-card div.row1__info,
.trade__user-match-card div.row1__market,
.trade__user-order-card div.row2__item,
.trade__user-order-card div.row1__time,
.trade__user-order-card div.row1__info,
.trade__card1 div.output div,
.trade__orders__box,
.trade__tab div.list,
.trade-markets-table__header .header-item__icon,
.choose-address__list,
.choose-address__body,
.history-tab-light__item,
.history-page-light__deposit__card div.top__right,
.history-page-light__deposit__card div.top__left,
.history-page-light__order__desktop-card span,
.history-page-light__order__desktop-card div.btn,
.history-page-light__order__card div.row1__time,
.history-tab__item,
.history-page__deposit__card div.top__right,
.history-page__deposit__card div.top__left,
.history-page__order__desktop-card span,
.history-page__order__desktop-card div.btn,
.history-page__order__card div.row1__time,
.otc-intro,
.otc-chart__chart,
.otc-chart__radio,
.otc-chart,
.otc-lazy,
.otc-bank-limit__body,
.otc-bank-limit,
.otc-result,
.wallet-price-type-light,
.wallet-price-type,
.wallet-loan-section-light__loans,
.wallet-loan-section-light__collaterals__row div.amounts,
.wallet-loan-section-light__collaterals__row div.info div,
.wallet-loan-section-light__collaterals,
.wallet-loan-section__loans,
.wallet-loan-section__collaterals__row div.amounts,
.wallet-loan-section__collaterals__row div.info div,
.wallet-loan-section__collaterals,
.wallet-main-section-light__list,
.wallet-main-section__list,
.pre-deposit-wallet-light__empty,
.pre-deposit-wallet__empty,
.auth-light__start__part1__requirments div.list,
.auth-light__start__part1__features div.list,
.auth-light__wrapper__upload-image div.option,
.auth-light__wrapper__upload-image,
.auth-light__progress div.item,
.auth__start__part1__requirments div.list,
.auth__start__part1__features div.list,
.auth__wrapper__upload-image div.option,
.auth__wrapper__upload-image,
.auth__progress div.item {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center
}

.column-justify-start,
.dropdown1__list,
.table1-light,
.table1,
.tab1-light,
.tab1,
.element4-light,
.element4,
.support-ticket__body,
.loan-calc-light__installment__list,
.loan-calc-light__collateral__item,
.loan-calc-light__body,
.loan-calc__installment__list,
.loan-calc__collateral__item,
.loan-calc__body,
.my-loan-light__list,
.my-loan-light__body,
.my-loan__list,
.my-loan__body,
.loan-preview-light__body,
.loan-preview__body,
.loan-collateral-light__balance-box,
.loan-collateral-light__body,
.loan-collateral__balance-box,
.loan-collateral__body,
.loan-landing-light__list2 div.body,
.loan-landing-light__list2 div.number,
.loan-landing-light__list2,
.loan-landing-light__list1 div.item,
.loan-landing-light__calc,
.loan-landing-light__top,
.loan-landing-light__body,
.loan-landing__list2 div.body,
.loan-landing__list2 div.number,
.loan-landing__list2,
.loan-landing__list1 div.item,
.loan-landing__calc,
.loan-landing__top,
.loan-landing__body,
.installment-popup-light__list__list,
.installment-popup__list__list,
.loan-wrapper-light,
.loan-wrapper,
.loan-tab-light,
.loan-tab,
.loan-light__body__data div.options,
.loan-light__body__data,
.loan-light__body,
.loan__body__data div.options,
.loan__body__data,
.loan__body,
.knh-page__body,
.notif-page__body,
.ios-dl__body,
.price-alert-light__body,
.price-alert__body,
.payment-light__body,
.payment__body,
.app-download__wrapper,
.not-found__body,
.rules__body,
.invitation__stats__box,
.invitation__stats,
.invitation__list__links,
.invitation__top__cards,
.invitation__top div.box,
.invitation__top,
.invitation__codes,
.invitation__nocodes__cards,
.invitation__nocodes,
.invitation__body,
.user-level__top,
.user-level__body,
.receive-gift-light__page1 div.box,
.receive-gift-light__page1,
.receive-gift-light__body,
.gift-detail-light__body,
.create-gift-light__top,
.create-gift-light__body,
.gift-cards-light__cards__list,
.gift-cards-light__cards,
.gift-cards-light__body,
.gift-light__top__box,
.gift-light__top,
.gift-light__body,
.receive-gift__page1 div.box,
.receive-gift__page1,
.receive-gift__body,
.gift-detail__body,
.create-gift__top,
.create-gift__body,
.gift-cards__cards__list,
.gift-cards__cards,
.gift-cards__body,
.gift__top__box,
.gift__top,
.gift__body,
.aboutus__top,
.aboutus__body,
.trade-light__orders__wrapper,
.trade-light__panel,
.trade__orders__wrapper,
.trade__panel,
.support-page__top,
.support-page__body,
.bitpinland__invite,
.bitpinland__top,
.bitpinland__body,
.otc-lazy__body,
.auth-light__end__features,
.auth-light__end__body,
.auth-light__end,
.auth__end__features,
.auth__end__body,
.auth__end {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-start
}

.column-justify-end,
.element4-light div.bsrc,
.element4 div.bsrc,
.knh-page__part2 div.empty,
.main__bottom-banner,
.choose-address {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-end
}

.column-align-start,
.markets-popup-light__list div.right div,
.markets-popup__list div.right div,
.currencies-card__item div.info div,
.knh-page__part2 div.left,
.trade-light__user-panel,
.trade__user-panel,
.otc-chart__options {
    display: flex;
    align-items: flex-start;
    flex-direction: column
}

.column-align-end,
.otc-intro__body,
.otc-chart__body {
    display: flex;
    align-items: flex-end;
    flex-direction: column
}

.dark-theme,
body {
    --background_color: #1a1a1a;
    --body_text_primary: #fff;
    --body_text_secondary: #b2b2b2;
    --body_text_tertiary: #fff;
    --body_text_accent: #4ef09d;
    --body_text_quaternaryt: #222;
    --body_text_quinary: #b2b2b2;
    --body_text_senary: #fff;
    --body_text_octonary: #b2b2b2;
    --body_text_nonary: #fff;
    --body-text_row: #b2b2b2;
    --body-text_sub: #e1e1e1;
    --body_text_caption: #e1e1e1;
    --accent_color: #4ef09d;
    --accent_color_secondary: #4ef09d;
    --surface_primary: #222;
    --surface_secondary: #333;
    --surface_secondary_50: rgba(51, 51, 51, .5);
    --surface_tertiary: #666;
    --surface_quaternary: #333;
    --surface_quinary: #1a1a1a;
    --surface_senary: #333;
    --surface_septenary: #f2f2f2;
    --surface_octonary: #222;
    --surface_nonary: #1a1a1a;
    --surface_decenary: #333;
    --surface_unenary: #222;
    --surface_binary: #222;
    --border_line_primary: #4ef09d;
    --border_line_secondary: #666;
    --border_line_tertiary: #333;
    --border_line_quinary: #333;
    --border_line_quaternary: #b2b2b2;
    --border_line_pink: #ff5a5a;
    --border_line_yellow: #e7c400;
    --border_line_blue: #74a5eb;
    --border_line_green: #4ef09d;
    --icon_primary: #1a1a1a;
    --icon_secondary: #666;
    --hover_select_primary: #4ef09d;
    --tag_on_surface_primary: #015945;
    --helper_red: #ff5a5a;
    --helper_red_secondary: #251d1d;
    --helper_yellow: #e7c400;
    --helper_yellow_secondary: #4a4a4a;
    --helper_blue: #74a5eb;
    --helper_blue_secondary: #1e2124;
    --helper_green: #4ef09d;
    --helper_green_secondary: #1a1a1a;
    --helper_purple: #c100ff;
    --helper_purple_secondary: #410041;
    --helper_purple_tertiary: #6566b0;
    --helper_green_faded: rgba(78, 240, 157, .1490196078);
    --helper_red_faded: rgba(255, 90, 90, .1490196078);
    --scrim_primary: #3a3a3a;
    --text_on_disable_primary: #666;
    --text_on_disable_secondary: #666;
    --card_desc: #d8d8d8;
    --popup-bg-color: rgba(58, 58, 58, .8196078431);
    --popup-secondry-bg-color: #1a1a1a;
    --popup-body-bg-color: #1a1a1a;
    --background_card: #333;
    --gradient_primary: #333;
    --gradient_secondary: #002920;
    --progress: rgba(178, 178, 178, .6);
    --text-active: #fafafa;
    --text-active-secondry: rgba(72, 251, 111, .67);
    --text-soon: #fafafa;
    --text-soon-secondry: #6566b0
}

.light-theme,
body.light {
    --background_color: #e9e9e9;
    --body_text_primary: #1a1a1a;
    --body_text_secondary: #666;
    --body_text_tertiary: #e9e9e9;
    --body_text_accent: #02a67f;
    --body_text_quaternaryt: #d8d8d8;
    --body_text_quinary: #333;
    --body_text_senary: #222;
    --body_text_octonary: #1a1a1a;
    --body_text_nonary: #666;
    --body-text_row: #222;
    --body-text_sub: #333;
    --body_text_caption: #1a1a1a;
    --accent_color: #4ef09d;
    --accent_color_secondary: #02a67f;
    --surface_primary: #f2f2f2;
    --surface_secondary: #fff;
    --surface_secondary_50: #d8d8d8;
    --surface_tertiary: #d8d8d8;
    --surface_quaternary: #e1e1e1;
    --surface_quinary: #b2b2b2;
    --surface_senary: #d8d8d8;
    --surface_septenary: #222;
    --surface_octonary: #fff;
    --surface_nonary: #f2f2f2;
    --surface_decenary: #f2f2f2;
    --surface_unenary: #e1e1e1;
    --surface_binary: #1a1a1a;
    --border_line_primary: #02a67f;
    --border_line_secondary: #b2b2b2;
    --border_line_tertiary: #d8d8d8;
    --border_line_quinary: #b2b2b2;
    --border_line_quaternary: #dbdbdb;
    --border_line_pink: #de411e;
    --border_line_yellow: #e7c400;
    --border_line_blue: #74a5eb;
    --border_line_green: #4ef09d;
    --icon_primary: #fff;
    --icon_secondary: #dbdbdb;
    --hover_select_primary: #02a67f;
    --tag_on_surface_primary: #02a67f;
    --helper_red: #ff5a5a;
    --helper_red_secondary: #de411e;
    --helper_yellow: #e7c400;
    --helper_yellow_secondary: #ffe600;
    --helper_blue: #134094;
    --helper_blue_secondary: #131409;
    --helper_green: #4ef09d;
    --helper_green_secondary: #20dd8e;
    --helper_purple: #7d00ff;
    --helper_purple_secondary: #d5b3ff;
    --helper_purple_tertiary: #6566b0;
    --helper_green_faded: rgba(78, 240, 157, .3019607843);
    --helper_red_faded: rgba(255, 90, 90, .4);
    --scrim_primary: #747474;
    --text_on_disable_primary: #666;
    --text_on_disable_secondary: #b2b2b2;
    --card_desc: #333;
    --popup-bg-color: rgba(26, 26, 26, .6980392157);
    --popup-secondry-bg-color: #666;
    --popup-body-bg-color: #fff;
    --background_card: #222;
    --gradient_primary: #c2c2c2;
    --gradient_secondary: #cafbe2;
    --progress: rgba(102, 102, 102, .6);
    --text-active: #015945;
    --text-active-secondry: #fff;
    --text-soon: #1a1a1a;
    --text-soon-secondry: rgba(26, 26, 26, 0)
}

.coin-page__package {
    position: unset !important;
    direction: ltr !important
}

.auth {
    height: 100vh
}

@media (min-width: 834px) {
    .auth {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center
    }
}

.auth__body {
    width: 100%;
    height: 100%
}

@media (min-width: 834px) {
    .auth__body {
        height: calc(100% - 60px);
        padding: 0 16px 24px
    }
}

@media (min-width: 992px) {
    .auth__body {
        padding: 0 32px 24px
    }
}

.auth__header {
    width: 100%;
    padding: 16px;
    border-bottom: 1px solid #333;
    color: #fff
}

.auth__header button {
    background-color: unset;
    border: unset;
    outline: unset;
    width: 24px;
    height: 24px
}

.auth__header img {
    cursor: pointer
}

@media (min-width: 992px) {
    .auth__header {
        padding: 16px 32px;
        font-size: 20px
    }
}

.auth__progress {
    width: 100%;
    padding: 20px 16px 0
}

@media (min-width: 834px) {
    .auth__progress {
        padding: 16px 0 0
    }
}

@media (min-width: 992px) {
    .auth__progress {
        padding-top: 24px
    }
}

.auth__progress div.item {
    width: 40%;
    color: #666;
    text-align: center
}

.auth__progress div.item.current {
    color: #4ef09d
}

.auth__progress div.title {
    padding-bottom: 8px;
    width: 100%
}

.auth__progress div.line {
    width: 100%;
    height: 2px
}

.auth__progress div.line div.line-d {
    width: 100%;
    height: 100%;
    background-color: #666
}

.auth__progress div.line div.line-e {
    position: absolute;
    right: 0;
    top: 0;
    width: 0px;
    height: 100%;
    background-color: #4ef09d
}

.auth__progress div.line div.line-e.current {
    background-color: #4ef09d;
    width: 100%
}

.auth__progress div.line div.line-e.half {
    width: 50%
}

.auth__progress div img {
    width: 16px;
    margin-left: 4px
}

.auth__inside {
    width: 100%;
    height: 100%
}

@media (min-width: 834px) {
    .auth__inside {
        background-color: #222;
        width: 550px;
        height: calc(100% - 48px);
        border-radius: 16px
    }
}

.auth__wrapper {
    width: 100%;
    background-color: #2229;
    border-radius: 16px 16px 0 0;
    padding: 20px 16px 100px;
    margin-top: 20px;
    height: calc(100% - 56px);
    overflow-y: scroll
}

.auth__wrapper.full-page {
    margin-top: 0;
    background-color: #1a1a1a;
    height: 100%;
    border-radius: 0
}

@media (min-width: 834px) {
    .auth__wrapper {
        padding: 24px 0 0;
        border-radius: 0;
        margin-top: 0
    }

    .auth__wrapper.full-page {
        background-color: #222
    }
}

.auth__wrapper__title,
.auth__wrapper__input-title {
    width: 100%;
    color: #fff;
    text-align: right;
    margin-bottom: 8px
}

@media (min-width: 834px) {
    .auth__wrapper__input-title {
        font-size: 14px
    }
}

.auth__wrapper__upload-image {
    width: 100%;
    height: 190px;
    border-radius: 8px;
    color: #4ef09d;
    cursor: pointer
}

.auth__wrapper__upload-image img.image {
    position: absolute;
    max-width: 100%;
    height: 100%;
    border-radius: 8px
}

.auth__wrapper__upload-image div.option {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    border: 1px dashed #666
}

.auth__wrapper__upload-image div.option div {
    margin-top: 20px
}

.auth__wrapper__upload-image div.option.has-img {
    flex-direction: row;
    background-color: #000000b3;
    border: 1px dashed #4ef09d
}

.auth__wrapper__upload-image div.option.has-img div {
    margin-top: 0;
    margin-right: 8px
}

.auth__wrapper__upload-samples {
    width: 100%;
    margin: 16px 0
}

.auth__wrapper__upload-samples img {
    width: calc((100% - 48px)/4)
}

.auth__wrapper__confirm-type {
    width: 100%;
    border-radius: 8px;
    background-color: #222;
    margin-top: 16px;
    padding: 16px
}

@media (min-width: 834px) {
    .auth__wrapper__confirm-type {
        background: #33333380
    }
}

.auth__wrapper__confirm-type div.desc {
    color: #b2b2b2;
    width: 100%;
    text-align: right;
    padding-right: 28px
}

.auth__wrapper__confirm-type.disable .tick-button p {
    color: #666;
    width: unset
}

.auth__wrapper__confirm-type.disable .tick-button span {
    color: #898989;
    margin-right: 2px
}

.auth__wrapper__confirm-type.disable .tick-button button {
    border: 1px solid #666
}

.auth__wrapper__confirm-type.disable div.desc {
    color: #666
}

.auth__wrapper__handwriting-title {
    width: 100%;
    color: #fff;
    text-align: right;
    margin-top: 24px
}

.auth__wrapper__handwriting-text {
    width: 100%;
    color: #fff;
    text-align: right;
    margin-bottom: 24px;
    margin-top: 8px
}

.auth__wrapper__submit-button {
    position: absolute;
    bottom: 0;
    margin: 0;
    width: calc(100% - 64px)
}

.auth__wrapper__handwriting-button {
    position: absolute;
    bottom: 0;
    margin: 0;
    width: 100%;
    background-color: #222;
    align-items: flex-start;
    padding-bottom: 32px;
    padding-top: 16px;
    border: unset
}

.auth__wrapper__handwriting-button.iOS {
    padding-bottom: 120px
}

.auth__wrapper__handwriting-button .button1 {
    width: calc(100% - 32px) !important;
    margin: 0
}

.auth__wrapper__error-text {
    width: 100%;
    margin-top: 4px;
    color: #ff5a5a;
    text-align: right;
    direction: rtl
}

.auth__wrapper__info-text {
    width: 100%;
    margin-top: 4px;
    color: #fff;
    text-align: right;
    direction: rtl
}

.auth__start {
    width: 100%;
    padding: 24px 16px 120px;
    height: 100%;
    overflow-y: scroll
}

@media (min-width: 834px) {
    .auth__start {
        padding: 24px 0 0;
        height: 100%
    }
}

.auth__start__part1 {
    width: 100%;
    margin-bottom: 8px
}

.auth__start__part1__title {
    width: 100%
}

.auth__start__part1__title span.title {
    color: #4ef09d;
    margin-right: 16px
}

.auth__start__part1__title div {
    width: 20px;
    height: 20px;
    border-radius: 10px;
    color: #1a1a1a;
    background-color: #4ef09d
}

.auth__start__part1__title div span {
    height: 20px;
    width: 20px;
    margin-top: 3px
}

.auth__start__part1__title img {
    margin-right: 4px;
    cursor: pointer
}

.auth__start__part1__title img.rotate {
    transform: rotate(180deg)
}

.auth__start__part1__title.disbale div {
    background-color: unset;
    border: 1px solid #b2b2b2;
    color: #b2b2b2
}

.auth__start__part1__title.disbale span {
    color: #fff
}

.auth__start__part1__wrapper {
    width: 100%;
    align-items: flex-start
}

.auth__start__part1__wrapper__line {
    width: 20px;
    height: 270px;
    margin-top: 8px
}

.auth__start__part1__wrapper__line div {
    width: 1px;
    height: 100%;
    background-color: #b2b2b2
}

.auth__start__part1__wrapper__data {
    width: calc(100% - 1px);
    padding-right: 16px;
    margin-top: 12px
}

.auth__start__part1__wrapper__data__line {
    width: 100%;
    background-color: #333333b3;
    height: 1px;
    margin: 12px 0
}

.auth__start__part1__features div.title {
    color: #fff;
    width: 100%;
    margin-bottom: 8px
}

.auth__start__part1__features div.list {
    width: 100%
}

.auth__start__part1__features div.card {
    width: 100%;
    color: #b2b2b2
}

.auth__start__part1__features div.card div {
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background-color: #4ef09d
}

.auth__start__part1__features div.card span {
    margin-right: 8px
}

.auth__start__part1__requirments div.title {
    color: #fff;
    width: 100%;
    margin-bottom: 8px
}

.auth__start__part1__requirments div.list {
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap
}

.auth__start__part1__requirments div.card {
    width: 50%;
    color: #b2b2b2
}

.auth__start__part1__requirments div.card span {
    margin-right: 8px
}

.auth__start__part1__requirments div.card div {
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background-color: #4ef09d
}

.auth__start__part1__requirments div.card div.red {
    background-color: #ff5a5a
}

.auth__landing {
    width: 100%;
    padding: 24px 16px 120px;
    height: 100%;
    overflow-y: scroll
}

@media (min-width: 834px) {
    .auth__landing {
        height: 100%;
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: center;
        padding: 84px 10% 0
    }

    .auth__landing .button1 {
        width: 340px
    }
}

.auth__landing__image {
    width: 100%
}

@media (min-width: 834px) {
    .auth__landing__image {
        width: 50%
    }
}

.auth__landing__image img {
    width: 70%
}

@media (min-width: 834px) {
    .auth__landing__image img {
        width: 100%
    }
}

.auth__landing__right {
    width: 100%
}

@media (min-width: 834px) {
    .auth__landing__right {
        width: 50%
    }
}

.auth__landing__title {
    width: 100%;
    color: #fff;
    margin-top: 32px
}

@media (min-width: 834px) {
    .auth__landing__title {
        font-size: 32px;
        margin-top: 0;
        justify-content: flex-start
    }
}

.auth__landing__subtitle {
    width: 100%;
    color: #fff;
    margin-top: 12px;
    text-align: center
}

@media (min-width: 834px) {
    .auth__landing__subtitle {
        font-size: 16px;
        justify-content: flex-start
    }
}

.auth__landing__progress {
    width: 100%;
    margin-top: 40px;
    align-items: flex-start
}

.auth__landing__progress__line {
    width: 16px
}

.auth__landing__progress__line div.item {
    height: 80px;
    width: 16px
}

@media (min-width: 834px) {
    .auth__landing__progress__line div.item {
        height: 88px
    }
}

.auth__landing__progress__line div.item div.tick {
    width: 16px;
    height: 16px;
    border-radius: 8px;
    background-color: #4ef09d
}

.auth__landing__progress__line div.item div.tick img {
    width: 12px
}

.auth__landing__progress__line div.item div.circle {
    width: 16px;
    height: 16px;
    border-radius: 8px;
    background-color: #b2b2b2
}

.auth__landing__progress__line div.item div.circle.enable {
    background-color: #4ef09d
}

.auth__landing__progress__line div.item div.circle div {
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background-color: #1a1a1a
}

.auth__landing__progress__line div.item div.line {
    height: 48px;
    width: 2px;
    background-color: #fff;
    margin: 8px 0
}

@media (min-width: 834px) {
    .auth__landing__progress__line div.item div.line {
        height: 56px
    }
}

.auth__landing__progress__line div.item div.line.enable {
    background-color: #4ef09d
}

.auth__landing__progress__text {
    width: calc(100% - 16px);
    padding-right: 12px
}

.auth__landing__progress__text div.item {
    width: 100%;
    height: 80px
}

@media (min-width: 834px) {
    .auth__landing__progress__text div.item {
        height: 88px
    }
}

.auth__landing__progress__text div.title {
    color: #fff;
    width: 100%;
    text-align: right;
    margin-top: -2px
}

.auth__landing__progress__text div.title.enable {
    color: #4ef09d
}

@media (min-width: 834px) {
    .auth__landing__progress__text div.title {
        font-size: 16px
    }
}

.auth__landing__progress__text div.subtitle {
    font-size: 10px;
    color: #fff;
    margin-top: -4px
}

@media (min-width: 834px) {
    .auth__landing__progress__text div.subtitle {
        font-size: 14px
    }
}

.auth__landing__btn {
    width: 340px;
    margin-top: 24px;
    color: #4ef09d;
    cursor: pointer
}

.auth__end {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    padding-bottom: 120px
}

@media (min-width: 834px) {
    .auth__end {
        padding: 0
    }
}

.auth__end .button1 {
    margin-top: 56px
}

.auth__end .button2 {
    margin: 16px auto 0
}

.auth__end img.image {
    width: 150px;
    margin-top: 56px
}

@media (min-width: 834px) {
    .auth__end img.image {
        margin-top: 40px
    }
}

.auth__end__body {
    width: 100%;
    padding: 0 16px
}

@media (min-width: 834px) {
    .auth__end__body {
        padding: 0
    }
}

.auth__end__title {
    margin-top: 40px;
    color: #fff
}

@media (min-width: 834px) {
    .auth__end__title {
        font-size: 20px
    }
}

.auth__end__subtitle {
    margin-top: 12px;
    color: #fff
}

@media (min-width: 834px) {
    .auth__end__subtitle {
        font-size: 14px
    }
}

.auth__end__features {
    min-width: 50%;
    align-items: flex-start;
    margin-top: 24px
}

.auth__end__features div.item {
    color: #fff;
    margin-bottom: 4px
}

@media (min-width: 834px) {
    .auth__end__features div.item {
        font-size: 14px
    }
}

.auth__end__features div.item img {
    margin-left: 4px
}

.auth-light {
    width: 100vw;
    height: 100vh;
    background-color: #e9e9e9
}

@media (min-width: 834px) {
    .auth-light {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center
    }
}

.auth-light__body {
    width: 100%;
    height: 100%
}

@media (min-width: 834px) {
    .auth-light__body {
        height: calc(100% - 60px);
        padding: 0 16px 24px
    }
}

@media (min-width: 992px) {
    .auth-light__body {
        padding: 0 32px 24px
    }
}

.auth-light__header {
    width: 100%;
    padding: 16px;
    border-bottom: 1px solid #d8d8d8;
    color: #1a1a1a
}

.auth-light__header button {
    background-color: unset;
    border: unset;
    outline: unset;
    width: 24px;
    height: 24px
}

.auth-light__header img {
    cursor: pointer
}

@media (min-width: 992px) {
    .auth-light__header {
        padding: 16px 32px;
        font-size: 20px
    }
}

.auth-light__progress {
    width: 100%;
    padding: 20px 16px 0
}

@media (min-width: 834px) {
    .auth-light__progress {
        padding: 16px 0 0
    }
}

@media (min-width: 992px) {
    .auth-light__progress {
        padding-top: 24px
    }
}

.auth-light__progress div.item {
    width: 40%;
    color: #b2b2b2;
    text-align: center
}

.auth-light__progress div.item.current {
    color: #02a67f
}

.auth-light__progress div.title {
    padding-bottom: 8px;
    width: 100%
}

.auth-light__progress div.line {
    width: 100%;
    height: 2px
}

.auth-light__progress div.line div.line-d {
    width: 100%;
    height: 100%;
    background-color: #b2b2b2
}

.auth-light__progress div.line div.line-e {
    position: absolute;
    right: 0;
    top: 0;
    width: 0px;
    height: 100%;
    background-color: #02a67f
}

.auth-light__progress div.line div.line-e.current {
    background-color: #02a67f;
    width: 100%
}

.auth-light__progress div.line div.line-e.half {
    width: 50%
}

.auth-light__progress div img {
    width: 16px;
    margin-left: 4px
}

.auth-light__inside {
    width: 100%;
    height: 100%
}

@media (min-width: 834px) {
    .auth-light__inside {
        background-color: #f2f2f2;
        width: 550px;
        height: calc(100% - 48px);
        border-radius: 16px
    }
}

.auth-light__wrapper {
    width: 100%;
    background-color: #f2f2f2;
    border-radius: 16px 16px 0 0;
    padding: 20px 16px 100px;
    margin-top: 20px;
    height: calc(100% - 56px);
    overflow-y: scroll
}

.auth-light__wrapper.full-page {
    margin-top: 0;
    background-color: #e9e9e9;
    height: 100%;
    border-radius: 0
}

@media (min-width: 834px) {
    .auth-light__wrapper {
        padding: 24px 0 0;
        border-radius: 0;
        margin-top: 0
    }

    .auth-light__wrapper.full-page {
        background-color: unset
    }
}

.auth-light__wrapper__title,
.auth-light__wrapper__input-title {
    width: 100%;
    color: #1a1a1a;
    text-align: right;
    margin-bottom: 8px
}

@media (min-width: 834px) {
    .auth-light__wrapper__input-title {
        font-size: 14px
    }
}

.auth-light__wrapper__upload-image {
    width: 100%;
    height: 190px;
    border-radius: 8px;
    color: #02a67f;
    cursor: pointer
}

.auth-light__wrapper__upload-image img.image {
    position: absolute;
    max-width: 100%;
    height: 100%;
    border-radius: 8px
}

.auth-light__wrapper__upload-image div.option {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    border: 1px dashed #b2b2b2
}

.auth-light__wrapper__upload-image div.option div {
    margin-top: 20px
}

.auth-light__wrapper__upload-image div.option.has-img {
    flex-direction: row;
    background-color: #e1e1e1c0;
    border: 1px dashed #02a67f
}

.auth-light__wrapper__upload-image div.option.has-img div {
    margin-top: 0;
    margin-right: 8px
}

.auth-light__wrapper__upload-samples {
    width: 100%;
    margin: 16px 0
}

.auth-light__wrapper__upload-samples img {
    width: calc((100% - 48px)/4)
}

.auth-light__wrapper__confirm-type {
    width: 100%;
    border-radius: 8px;
    background-color: #e1e1e180;
    margin-top: 16px;
    padding: 16px
}

.auth-light__wrapper__confirm-type div.desc {
    color: #666;
    width: 100%;
    text-align: right;
    padding-right: 28px
}

.auth-light__wrapper__confirm-type.disable .tick-button p {
    color: #b2b2b2;
    width: unset
}

.auth-light__wrapper__confirm-type.disable .tick-button span {
    color: #959595;
    margin-right: 2px
}

.auth-light__wrapper__confirm-type.disable .tick-button button {
    border: 1px solid #b2b2b2
}

.auth-light__wrapper__confirm-type.disable div.desc {
    color: #b2b2b2
}

.auth-light__wrapper__handwriting-title {
    width: 100%;
    color: #1a1a1a;
    text-align: right;
    margin-top: 24px
}

.auth-light__wrapper__handwriting-text {
    width: 100%;
    color: #1a1a1a;
    text-align: right;
    margin-bottom: 24px;
    margin-top: 8px
}

.auth-light__wrapper__submit-button {
    position: absolute;
    bottom: 0;
    margin: 0;
    width: calc(100% - 64px)
}

.auth-light__wrapper__handwriting-button {
    position: absolute;
    bottom: 0;
    margin: 0;
    width: 100%;
    background-color: #f2f2f2;
    align-items: flex-start;
    padding-bottom: 32px;
    padding-top: 16px;
    border: unset
}

.auth-light__wrapper__handwriting-button.iOS {
    padding-bottom: 120px
}

.auth-light__wrapper__handwriting-button .button1 {
    width: calc(100% - 32px) !important;
    margin: 0
}

.auth-light__wrapper__error-text {
    width: 100%;
    margin-top: 4px;
    color: #ff5a5a;
    text-align: right;
    direction: rtl
}

.auth-light__wrapper__info-text {
    width: 100%;
    margin-top: 4px;
    color: #1a1a1a;
    text-align: right;
    direction: rtl
}

.auth-light__start {
    width: 100%;
    padding: 24px 16px 120px;
    height: 100%;
    overflow-y: scroll
}

@media (min-width: 834px) {
    .auth-light__start {
        padding: 24px 0 0;
        height: 100%
    }
}

.auth-light__start__part1 {
    width: 100%;
    margin-bottom: 8px
}

.auth-light__start__part1__title {
    width: 100%
}

.auth-light__start__part1__title span.title {
    color: #02a67f;
    margin-right: 16px
}

.auth-light__start__part1__title div {
    width: 20px;
    height: 20px;
    border-radius: 10px;
    color: #fff;
    background-color: #02a67f
}

.auth-light__start__part1__title div span {
    height: 20px;
    width: 20px;
    margin-top: 3px
}

.auth-light__start__part1__title img {
    margin-right: 4px;
    cursor: pointer
}

.auth-light__start__part1__title img.rotate {
    transform: rotate(180deg)
}

.auth-light__start__part1__title.disbale div {
    background-color: unset;
    border: 1px solid #b2b2b2;
    color: #b2b2b2
}

.auth-light__start__part1__title.disbale div span {
    color: #b2b2b2
}

.auth-light__start__part1__title.disbale span {
    color: #1a1a1a
}

.auth-light__start__part1__wrapper {
    width: 100%;
    align-items: flex-start
}

.auth-light__start__part1__wrapper__line {
    width: 20px;
    height: 270px;
    margin-top: 8px
}

.auth-light__start__part1__wrapper__line div {
    width: 1px;
    height: 100%;
    background-color: #b2b2b2
}

.auth-light__start__part1__wrapper__data {
    width: calc(100% - 1px);
    padding-right: 16px;
    margin-top: 12px
}

.auth-light__start__part1__wrapper__data__line {
    width: 100%;
    background-color: #d8d8d8;
    height: 1px;
    margin: 12px 0
}

.auth-light__start__part1__features div.title {
    color: #1a1a1a;
    width: 100%;
    margin-bottom: 8px
}

.auth-light__start__part1__features div.list {
    width: 100%
}

.auth-light__start__part1__features div.card {
    width: 100%;
    color: #333333c0
}

.auth-light__start__part1__features div.card div {
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background-color: #02a67f
}

.auth-light__start__part1__features div.card span {
    margin-right: 8px
}

.auth-light__start__part1__requirments div.title {
    color: #1a1a1a;
    width: 100%;
    margin-bottom: 8px
}

.auth-light__start__part1__requirments div.list {
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap
}

.auth-light__start__part1__requirments div.card {
    width: 50%;
    color: #333333c0
}

.auth-light__start__part1__requirments div.card div {
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background-color: #02a67f
}

.auth-light__start__part1__requirments div.card div.red {
    background-color: #ff5a5a
}

.auth-light__start__part1__requirments div.card span {
    margin-right: 8px
}

.auth-light__landing {
    width: 100%;
    padding: 24px 16px 120px;
    height: 100%;
    overflow-y: scroll
}

@media (min-width: 834px) {
    .auth-light__landing {
        height: 100%;
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: center;
        padding: 84px 10% 0
    }

    .auth-light__landing .button1 {
        width: 340px
    }
}

.auth-light__landing__image {
    width: 100%
}

@media (min-width: 834px) {
    .auth-light__landing__image {
        width: 50%
    }
}

.auth-light__landing__image img {
    width: 70%
}

@media (min-width: 834px) {
    .auth-light__landing__image img {
        width: 100%
    }
}

.auth-light__landing__right {
    width: 100%
}

@media (min-width: 834px) {
    .auth-light__landing__right {
        width: 50%
    }
}

.auth-light__landing__title {
    width: 100%;
    color: #1a1a1a;
    margin-top: 32px
}

@media (min-width: 834px) {
    .auth-light__landing__title {
        font-size: 32px;
        margin-top: 0;
        justify-content: flex-start
    }
}

.auth-light__landing__subtitle {
    width: 100%;
    color: #1a1a1a;
    margin-top: 12px;
    text-align: center
}

@media (min-width: 834px) {
    .auth-light__landing__subtitle {
        font-size: 16px;
        justify-content: flex-start
    }
}

.auth-light__landing__progress {
    width: 100%;
    margin-top: 40px;
    align-items: flex-start
}

.auth-light__landing__progress__line {
    width: 16px
}

.auth-light__landing__progress__line div.item {
    height: 80px;
    width: 16px
}

@media (min-width: 834px) {
    .auth-light__landing__progress__line div.item {
        height: 88px
    }
}

.auth-light__landing__progress__line div.item div.tick {
    width: 16px;
    height: 16px;
    border-radius: 8px;
    background-color: #02a67f
}

.auth-light__landing__progress__line div.item div.tick img {
    width: 12px
}

.auth-light__landing__progress__line div.item div.circle {
    width: 16px;
    height: 16px;
    border-radius: 8px;
    background-color: #b2b2b2
}

.auth-light__landing__progress__line div.item div.circle.enable {
    background-color: #02a67f
}

.auth-light__landing__progress__line div.item div.circle div {
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background-color: #e9e9e9
}

.auth-light__landing__progress__line div.item div.line {
    height: 48px;
    width: 2px;
    background-color: #b2b2b2;
    margin: 8px 0
}

@media (min-width: 834px) {
    .auth-light__landing__progress__line div.item div.line {
        height: 56px
    }
}

.auth-light__landing__progress__line div.item div.line.enable {
    background-color: #02a67f
}

.auth-light__landing__progress__text {
    width: calc(100% - 16px);
    padding-right: 12px
}

.auth-light__landing__progress__text div.item {
    width: 100%;
    height: 80px
}

@media (min-width: 834px) {
    .auth-light__landing__progress__text div.item {
        height: 88px
    }
}

.auth-light__landing__progress__text div.title {
    color: #1a1a1a;
    width: 100%;
    text-align: right;
    margin-top: -2px
}

.auth-light__landing__progress__text div.title.enable {
    color: #02a67f
}

@media (min-width: 834px) {
    .auth-light__landing__progress__text div.title {
        font-size: 16px
    }
}

.auth-light__landing__progress__text div.subtitle {
    font-size: 10px;
    color: #666;
    margin-top: -4px
}

@media (min-width: 834px) {
    .auth-light__landing__progress__text div.subtitle {
        font-size: 14px
    }
}

.auth-light__landing__btn {
    width: 340px;
    margin-top: 24px;
    color: #02a67f;
    cursor: pointer
}

.auth-light__end {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    padding-bottom: 120px
}

@media (min-width: 834px) {
    .auth-light__end {
        padding: 0
    }
}

.auth-light__end .button1 {
    margin-top: 56px
}

.auth-light__end .button2 {
    margin: 16px auto 0
}

.auth-light__end img.image {
    width: 150px;
    margin-top: 56px
}

@media (min-width: 834px) {
    .auth-light__end img.image {
        margin-top: 40px
    }
}

.auth-light__end__body {
    width: 100%;
    padding: 0 16px
}

@media (min-width: 834px) {
    .auth-light__end__body {
        padding: 0
    }
}

.auth-light__end__title {
    margin-top: 40px;
    color: #1a1a1a
}

@media (min-width: 834px) {
    .auth-light__end__title {
        font-size: 20px
    }
}

.auth-light__end__subtitle {
    margin-top: 12px;
    color: #1a1a1a
}

@media (min-width: 834px) {
    .auth-light__end__subtitle {
        font-size: 14px
    }
}

.auth-light__end__features {
    min-width: 50%;
    align-items: flex-start;
    margin-top: 24px
}

.auth-light__end__features div.item {
    color: #1a1a1a;
    margin-bottom: 4px
}

@media (min-width: 834px) {
    .auth-light__end__features div.item {
        font-size: 14px
    }
}

.auth-light__end__features div.item img {
    margin-left: 4px
}

.auth-alert {
    margin-bottom: 16px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    border-radius: 8px;
    color: #fff;
    margin-top: 16px;
    background: linear-gradient(0deg, #e7c40012, #e7c40012), #1a1a1a;
    border-bottom: 1px solid rgba(231, 196, 0, .2);
    padding: 12px 14px 12px 16px
}

.auth-alert.light {
    background: linear-gradient(0deg, #e7c4000d, #e7c4000d), #fff;
    color: #1a1a1a;
    border-bottom: 1px solid rgba(231, 196, 0, .4)
}

.auth-alert--bullet {
    padding-top: 8px
}

.auth-alert--bullet.nopadding {
    padding-top: 0
}

.auth-alert--text {
    margin-right: 8px;
    line-height: 21.6px
}

.auth-alert--text.light {
    color: #1a1a1a
}

.wallet-lazy {
    width: 100%
}

.wallet-lazy__row {
    width: 100%;
    height: 48px;
    margin-top: 8px;
    padding: 12px 16px;
    border-bottom: 1px solid #333
}

@media (min-width: 834px) {
    .wallet-lazy__row {
        height: 64px;
        margin-top: 12px;
        padding: 16px 8px
    }
}

.wallet-lazy__row div.info {
    height: 100%
}

.wallet-lazy-light {
    width: 100%
}

.wallet-lazy-light__row {
    width: 100%;
    height: 48px;
    margin-top: 8px;
    padding: 12px 8px;
    background-color: #fff;
    border-radius: 8px
}

@media (min-width: 834px) {
    .wallet-lazy-light__row {
        height: 64px;
        margin-top: 12px;
        padding: 16px 8px
    }
}

.wallet-lazy-light__row div.info {
    height: 100%
}

.pre-deposit-wallet {
    width: 100vw;
    height: 100vh;
    padding-bottom: 170px;
    overflow-y: scroll
}

.pre-deposit-wallet__wrapper {
    padding: 32px 16px 0;
    width: 100%
}

@media (min-width: 834px) {
    .pre-deposit-wallet__wrapper {
        padding: 72px 10% 0
    }
}

.pre-deposit-wallet__row1 {
    width: 100%
}

.pre-deposit-wallet__row1 div.knh {
    color: #4ef09d;
    cursor: pointer
}

.pre-deposit-wallet__row1 div.knh span {
    margin-right: 4px
}

.pre-deposit-wallet__row1 div.knh img {
    width: 24px;
    height: 24px
}

.pre-deposit-wallet__row1 div.right {
    color: #b2b2b2
}

@media (min-width: 834px) {
    .pre-deposit-wallet__row1 div.right {
        font-size: 16px
    }
}

.pre-deposit-wallet__row1 div.right img {
    margin-right: 16px;
    width: 20px;
    cursor: pointer
}

.pre-deposit-wallet__balance {
    color: #fff;
    width: 100%;
    margin-top: 24px
}

@media (min-width: 834px) {
    .pre-deposit-wallet__balance span {
        font-size: 20px
    }
}

.pre-deposit-wallet__balance span.amount {
    margin-left: 4px
}

@media (min-width: 834px) {
    .pre-deposit-wallet__balance span.amount {
        font-size: 40px
    }
}

.pre-deposit-wallet__empty {
    width: 100%;
    margin-top: 24px
}

@media (min-width: 834px) {
    .pre-deposit-wallet__empty {
        margin-top: 48px;
        align-items: flex-start
    }
}

.pre-deposit-wallet__empty div {
    margin-top: 32px;
    color: #b2b2b2;
    text-align: center
}

@media (min-width: 834px) {
    .pre-deposit-wallet__empty div {
        margin-top: 0;
        text-align: right;
        font-size: 16px
    }
}

.pre-deposit-wallet__options {
    width: 100%;
    margin-top: 24px
}

@media (min-width: 834px) {
    .pre-deposit-wallet__options {
        display: flex;
        justify-content: space-between
    }
}

.pre-deposit-wallet__options div.option {
    width: 100%;
    border-radius: 16px;
    background-color: #3339;
    margin-bottom: 16px;
    padding: 16px;
    color: #fff
}

@media (min-width: 834px) {
    .pre-deposit-wallet__options div.option {
        width: calc((100% - 30px)/2);
        font-size: 16px;
        margin-bottom: 0;
        cursor: pointer;
        padding: 24px 24px 24px 16px
    }
}

.pre-deposit-wallet__options div.option.first {
    background-color: #4ef09d1a
}

.pre-deposit-wallet__options div.option div.title {
    margin-right: 16px;
    white-space: break-spaces
}

.pre-deposit-wallet__options div.option div.title span.auth-title {
    font-size: 12px
}

@media (min-width: 834px) {
    .pre-deposit-wallet__options div.option div.title span.auth-title {
        font-size: 14px
    }
}

.pre-deposit-wallet__options div.option img.arrow {
    transform: rotate(90deg)
}

.pre-deposit-wallet-light {
    width: 100vw;
    height: 100vh;
    padding-bottom: 170px;
    overflow-y: scroll;
    background-color: #e9e9e9
}

.pre-deposit-wallet-light__wrapper {
    padding: 32px 16px 0;
    width: 100%
}

@media (min-width: 834px) {
    .pre-deposit-wallet-light__wrapper {
        padding: 72px 10% 0
    }
}

.pre-deposit-wallet-light__row1 {
    width: 100%
}

.pre-deposit-wallet-light__row1 div.knh {
    color: #02a67f;
    cursor: pointer
}

.pre-deposit-wallet-light__row1 div.knh span {
    margin-right: 4px
}

.pre-deposit-wallet-light__row1 div.knh img {
    width: 24px;
    height: 24px
}

.pre-deposit-wallet-light__row1 div.right {
    color: #666
}

@media (min-width: 834px) {
    .pre-deposit-wallet-light__row1 div.right {
        font-size: 16px
    }
}

.pre-deposit-wallet-light__row1 div.right img {
    margin-right: 16px;
    width: 20px;
    cursor: pointer
}

.pre-deposit-wallet-light__balance {
    color: #1a1a1a;
    width: 100%;
    margin-top: 24px
}

@media (min-width: 834px) {
    .pre-deposit-wallet-light__balance span {
        font-size: 20px
    }
}

.pre-deposit-wallet-light__balance span.amount {
    margin-left: 4px
}

@media (min-width: 834px) {
    .pre-deposit-wallet-light__balance span.amount {
        font-size: 40px
    }
}

.pre-deposit-wallet-light__empty {
    width: 100%;
    margin-top: 24px
}

@media (min-width: 834px) {
    .pre-deposit-wallet-light__empty {
        margin-top: 48px;
        align-items: flex-start
    }
}

.pre-deposit-wallet-light__empty div {
    margin-top: 32px;
    color: #333;
    text-align: center
}

@media (min-width: 834px) {
    .pre-deposit-wallet-light__empty div {
        margin-top: 0;
        text-align: right;
        font-size: 16px
    }
}

.pre-deposit-wallet-light__options {
    width: 100%;
    margin-top: 24px
}

@media (min-width: 834px) {
    .pre-deposit-wallet-light__options {
        display: flex;
        justify-content: space-between
    }
}

.pre-deposit-wallet-light__options div.option {
    width: 100%;
    border-radius: 16px;
    background-color: #fff;
    margin-bottom: 16px;
    padding: 16px;
    color: #1a1a1a
}

@media (min-width: 834px) {
    .pre-deposit-wallet-light__options div.option {
        width: calc((100% - 30px)/2);
        font-size: 16px;
        margin-bottom: 0;
        cursor: pointer;
        padding: 24px 24px 24px 16px
    }
}

.pre-deposit-wallet-light__options div.option.first {
    background-color: #4ef09d33
}

.pre-deposit-wallet-light__options div.option div.title {
    margin-right: 16px;
    white-space: break-spaces
}

.pre-deposit-wallet-light__options div.option div.title span.auth-title {
    font-size: 12px
}

@media (min-width: 834px) {
    .pre-deposit-wallet-light__options div.option div.title span.auth-title {
        font-size: 14px
    }
}

.pre-deposit-wallet-light__options div.option img.arrow {
    transform: rotate(90deg)
}

.pre-feature-wallet {
    width: 100vw;
    height: 100vh;
    overflow-y: scroll
}

.pre-feature-wallet__wrapper {
    width: 100%
}

@media (min-width: 834px) {
    .pre-feature-wallet__wrapper {
        padding: 72px 10% 0
    }
}

.pre-feature-wallet-light {
    width: 100vw;
    height: 100vh;
    overflow-y: scroll;
    background-color: #e9e9e9
}

.pre-feature-wallet-light__wrapper {
    width: 100%
}

@media (min-width: 834px) {
    .pre-feature-wallet-light__wrapper {
        padding: 72px 10% 0
    }
}

.complete-wallet {
    width: 100vw;
    height: 100vh;
    overflow-y: scroll
}

.complete-wallet__wrapper {
    width: 100%;
    height: 100%
}

@media (min-width: 834px) {
    .complete-wallet__wrapper {
        padding: 48px 10% 0
    }
}

.complete-wallet__body {
    border-radius: 16px 16px 0 0;
    width: 100%;
    height: calc(100% - 60px);
    margin-top: 60px
}

@media (min-width: 834px) {
    .complete-wallet__body {
        border-radius: 0;
        padding-bottom: 64px;
        margin-top: 0;
        overflow-y: scroll
    }
}

.complete-wallet__tab {
    margin-bottom: 0 !important;
    padding-top: 24px
}

@media (min-width: 834px) {
    .complete-wallet__tab {
        border-bottom: unset !important
    }
}

@media (max-width: 992px) {
    .complete-wallet__tab {
        background-color: #1a1a1a;
        position: fixed;
        top: 56px;
        z-index: 100
    }
}

.complete-wallet__tab2 {
    margin-bottom: 0 !important;
    padding-top: 24px
}

@media (max-width: 992px) {
    .complete-wallet__tab2 {
        position: fixed;
        background-color: #1a1a1a;
        top: 56px;
        z-index: 100
    }
}

.complete-wallet-light {
    width: 100vw;
    height: 100vh;
    overflow-y: scroll;
    background-color: #e9e9e9
}

.complete-wallet-light__wrapper {
    width: 100%;
    height: 100%
}

@media (min-width: 834px) {
    .complete-wallet-light__wrapper {
        padding: 48px 10% 0
    }
}

.complete-wallet-light__body {
    border-radius: 16px 16px 0 0;
    width: 100%;
    height: calc(100% - 60px);
    margin-top: 60px
}

@media (min-width: 834px) {
    .complete-wallet-light__body {
        border-radius: 0;
        padding-bottom: 64px;
        margin-top: 0;
        overflow-y: scroll;
        border-top: 1px solid #b2b2b2
    }
}

.complete-wallet-light__tab {
    margin-bottom: 0 !important;
    padding-top: 24px
}

@media (min-width: 834px) {
    .complete-wallet-light__tab {
        border-bottom: unset !important
    }
}

@media (max-width: 992px) {
    .complete-wallet-light__tab {
        background-color: #e9e9e9;
        position: fixed;
        top: 56px;
        z-index: 100
    }
}

.wallet-balance-section {
    width: 100%;
    background-color: #222;
    border-radius: 0 0 16px 16px;
    padding: 32px 16px 24px
}

@media (min-width: 834px) {
    .wallet-balance-section.feature-landing {
        padding-top: 48px
    }
}

@media (min-width: 834px) {
    .wallet-balance-section.feature-main {
        padding-top: 48px
    }
}

@media (min-width: 834px) {
    .wallet-balance-section.feature-loan {
        padding-top: 48px
    }
}

@media (min-width: 834px) {
    .wallet-balance-section.feature-stake {
        padding-top: 48px
    }
}

@media (min-width: 834px) {
    .wallet-balance-section {
        padding: 0;
        background-color: unset;
        border-radius: 0 !important
    }
}

.wallet-balance-section__row1 {
    width: 100%
}

.wallet-balance-section__row1 div.knh {
    color: #4ef09d;
    cursor: pointer
}

.wallet-balance-section__row1 div.knh span {
    margin-right: 4px
}

.wallet-balance-section__row1 div.knh img {
    width: 24px;
    height: 24px
}

.wallet-balance-section__row1 div.right {
    color: #b2b2b2
}

.wallet-balance-section__row1 div.right button {
    background-color: unset;
    border: unset;
    outline: unset;
    width: 20px;
    height: 20px;
    margin-right: 12px
}

.wallet-balance-section__row1 div.right img {
    width: 20px;
    cursor: pointer
}

@media (min-width: 834px) {
    .wallet-balance-section__row1 div.right {
        font-size: 16px
    }
}

.wallet-balance-section__wrapper {
    width: 100%
}

@media (min-width: 834px) {
    .wallet-balance-section__wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 32px
    }
}

.wallet-balance-section__wrapper__right {
    width: 100%
}

@media (min-width: 834px) {
    .wallet-balance-section__wrapper__right {
        width: 30%
    }
}

.wallet-balance-section__wrapper__left {
    width: 40%
}

.wallet-balance-section__wrapper__left .knh-asset-chart {
    padding: 0
}

.wallet-balance-section__wrapper__left img.balance-banner {
    margin-top: -52px;
    max-width: 408px
}

.wallet-balance-section__total-balance {
    color: #fff;
    width: 100%;
    margin-top: 24px
}

.wallet-balance-section__total-balance img {
    margin-right: 8px;
    cursor: pointer;
    transition-duration: .1s;
    transform: rotate(180deg);
    margin-top: 4px
}

.wallet-balance-section__total-balance img.rotate {
    transform: rotate(0);
    transition-duration: .1s
}

@media (min-width: 834px) {
    .wallet-balance-section__total-balance span {
        font-size: 20px
    }
}

.wallet-balance-section__total-balance span.amount {
    margin-left: 4px
}

@media (min-width: 834px) {
    .wallet-balance-section__total-balance span.amount {
        font-size: 40px
    }
}

.wallet-balance-section__balance-trend {
    width: 100%
}

.wallet-balance-section__balance-trend div.balance {
    color: #fff;
    width: 100%;
    margin-top: 8px
}

@media (min-width: 834px) {
    .wallet-balance-section__balance-trend div.balance {
        font-size: 14px;
        margin-top: 12px
    }
}

.wallet-balance-section__balance-trend div.balance div.val.loss {
    color: #ff5a5a
}

.wallet-balance-section__balance-trend div.balance div.val.profit {
    color: #4ef09d
}

.wallet-balance-section__balance-trend div.balance img.arrow {
    width: 12px;
    margin-right: 4px;
    transition-duration: .1s
}

.wallet-balance-section__balance-trend div.balance img.arrow.rotate {
    transition-duration: .1s;
    transform: rotate(180deg)
}

.wallet-balance-section__balance-trend .knh-asset-chart {
    width: 100%;
    margin-top: 24px;
    background-color: unset;
    border-radius: 0;
    padding: 0
}

.wallet-balance-section__btns {
    width: 100%;
    margin-top: 40px
}

@media (min-width: 834px) {
    .wallet-balance-section__btns {
        margin-top: 72px
    }
}

.wallet-balance-section__btns .button1,
.wallet-balance-section__btns .button2 {
    width: calc((100% - 16px)/2)
}

.wallet-balance-section-light {
    width: 100%;
    background-color: #f2f2f2;
    border-radius: 0 0 16px 16px;
    padding: 32px 16px 24px
}

@media (min-width: 834px) {
    .wallet-balance-section-light.feature-landing {
        padding-top: 48px
    }
}

@media (min-width: 834px) {
    .wallet-balance-section-light.feature-main {
        padding-top: 48px
    }
}

@media (min-width: 834px) {
    .wallet-balance-section-light.feature-loan {
        padding-top: 48px
    }
}

@media (min-width: 834px) {
    .wallet-balance-section-light.feature-stake {
        padding-top: 48px
    }
}

@media (min-width: 834px) {
    .wallet-balance-section-light {
        padding: 0;
        background-color: unset;
        border-radius: 0 !important
    }
}

.wallet-balance-section-light__row1 {
    width: 100%
}

.wallet-balance-section-light__row1 div.knh {
    color: #02a67f;
    cursor: pointer
}

.wallet-balance-section-light__row1 div.knh span {
    margin-right: 4px
}

.wallet-balance-section-light__row1 div.knh img {
    width: 24px;
    height: 24px
}

.wallet-balance-section-light__row1 div.right {
    color: #666
}

.wallet-balance-section-light__row1 div.right button {
    background-color: unset;
    border: unset;
    outline: unset;
    width: 20px;
    height: 20px;
    margin-right: 12px
}

.wallet-balance-section-light__row1 div.right img {
    width: 20px;
    cursor: pointer
}

@media (min-width: 834px) {
    .wallet-balance-section-light__row1 div.right {
        font-size: 16px
    }
}

.wallet-balance-section-light__wrapper {
    width: 100%
}

@media (min-width: 834px) {
    .wallet-balance-section-light__wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 32px
    }
}

.wallet-balance-section-light__wrapper__right {
    width: 100%
}

@media (min-width: 834px) {
    .wallet-balance-section-light__wrapper__right {
        width: 30%
    }
}

.wallet-balance-section-light__wrapper__left {
    width: 40%
}

.wallet-balance-section-light__wrapper__left .knh-asset-chart-light {
    background-color: unset;
    padding: 0
}

.wallet-balance-section-light__wrapper__left img.balance-banner {
    margin-top: -52px;
    max-width: 408px
}

.wallet-balance-section-light__total-balance {
    color: #1a1a1a;
    width: 100%;
    margin-top: 24px
}

.wallet-balance-section-light__total-balance div.text-dropdown {
    background-color: #e1e1e1 !important
}

.wallet-balance-section-light__total-balance img {
    margin-right: 8px;
    cursor: pointer;
    transition-duration: .1s;
    transform: rotate(180deg);
    margin-top: 4px
}

.wallet-balance-section-light__total-balance img.rotate {
    transform: rotate(0);
    transition-duration: .1s
}

@media (min-width: 834px) {
    .wallet-balance-section-light__total-balance span {
        font-size: 20px
    }
}

.wallet-balance-section-light__total-balance span.amount {
    margin-left: 4px
}

@media (min-width: 834px) {
    .wallet-balance-section-light__total-balance span.amount {
        font-size: 40px
    }
}

.wallet-balance-section-light__balance-trend {
    width: 100%
}

.wallet-balance-section-light__balance-trend div.balance {
    color: #1a1a1a;
    width: 100%;
    margin-top: 8px
}

@media (min-width: 834px) {
    .wallet-balance-section-light__balance-trend div.balance {
        font-size: 14px;
        margin-top: 12px
    }
}

.wallet-balance-section-light__balance-trend div.balance div.val.loss {
    color: #ff5a5a
}

.wallet-balance-section-light__balance-trend div.balance div.val.profit {
    color: #02a67f
}

.wallet-balance-section-light__balance-trend div.balance img.arrow {
    width: 12px;
    margin-right: 4px;
    transition-duration: .1s
}

.wallet-balance-section-light__balance-trend div.balance img.arrow.rotate {
    transition-duration: .1s;
    transform: rotate(180deg)
}

.wallet-balance-section-light__balance-trend .knh-asset-chart-light {
    width: 100%;
    margin-top: 24px;
    background-color: unset;
    border-radius: 0;
    padding: 0
}

.wallet-balance-section-light__btns {
    width: 100%;
    margin-top: 40px
}

@media (min-width: 834px) {
    .wallet-balance-section-light__btns {
        margin-top: 72px
    }
}

.wallet-balance-section-light__btns .button1,
.wallet-balance-section-light__btns .button2 {
    width: calc((100% - 16px)/2)
}

.wallet-landing-section {
    width: 100%;
    background-color: #222;
    padding: 32px 16px 100px;
    margin-top: 8px;
    min-height: 300px;
    height: calc(100% - 330px)
}

@media (min-width: 834px) {
    .wallet-landing-section {
        background-color: unset;
        padding-top: 32px;
        height: unset
    }
}

.wallet-landing-section__title {
    color: #fff;
    width: 100%;
    text-align: right
}

@media (min-width: 834px) {
    .wallet-landing-section__title {
        font-weight: 700
    }
}

.wallet-landing-section__item {
    margin-top: 32px;
    width: 100%;
    cursor: pointer
}

@media (min-width: 834px) {
    .wallet-landing-section__item {
        background: #22222280;
        height: 72px;
        padding: 0 24px;
        border-radius: 16px;
        margin-top: 12px
    }
}

.wallet-landing-section__item div {
    color: #fff
}

@media (min-width: 834px) {
    .wallet-landing-section__item div.right {
        font-size: 16px
    }
}

.wallet-landing-section__item div.right div {
    margin-right: 16px
}

@media (min-width: 834px) {
    .wallet-landing-section__item div.left {
        font-size: 16px
    }
}

.wallet-landing-section__item div.left img {
    margin-right: 8px;
    width: 16px
}

.wallet-landing-section-light {
    width: 100%;
    background-color: #f2f2f2;
    padding: 32px 16px 100px;
    margin-top: 8px;
    min-height: 300px;
    height: calc(100% - 330px)
}

@media (min-width: 834px) {
    .wallet-landing-section-light {
        background-color: unset;
        padding-top: 32px;
        height: unset
    }
}

.wallet-landing-section-light__title {
    color: #1a1a1a;
    width: 100%;
    text-align: right
}

@media (min-width: 834px) {
    .wallet-landing-section-light__title {
        font-weight: 700
    }
}

.wallet-landing-section-light__item {
    margin-top: 32px;
    width: 100%;
    cursor: pointer
}

@media (min-width: 834px) {
    .wallet-landing-section-light__item {
        background: #fff;
        height: 72px;
        padding: 0 24px;
        border-radius: 16px;
        margin-top: 12px
    }
}

.wallet-landing-section-light__item div {
    color: #1a1a1a
}

@media (min-width: 834px) {
    .wallet-landing-section-light__item div.right {
        font-size: 16px
    }
}

.wallet-landing-section-light__item div.right div {
    margin-right: 16px
}

@media (min-width: 834px) {
    .wallet-landing-section-light__item div.left {
        font-size: 16px
    }
}

.wallet-landing-section-light__item div.left img {
    margin-right: 8px;
    width: 16px
}

.wallet-main-section__bottom {
    width: 100%;
    background-color: #222;
    padding-bottom: 24px;
    margin-top: 8px
}

.wallet-main-section__bottom .input4 {
    width: calc(100% - 32px);
    margin: 16px
}

@media (min-width: 834px) {
    .wallet-main-section__bottom {
        background-color: unset;
        margin-top: 56px;
        padding: 0
    }

    .wallet-main-section__bottom .input4 {
        width: 300px;
        margin: 0 0 0 30px
    }
}

.wallet-main-section__sticky {
    width: 100%;
    position: sticky;
    top: 50px;
    background-color: #222;
    z-index: 50;
    padding-top: 24px
}

.wallet-main-section__sticky.pre-feature {
    top: 0
}

@media (min-width: 834px) {
    .wallet-main-section__sticky {
        background-color: #1a1a1a
    }
}

.wallet-main-section__options {
    width: 100%;
    padding: 0 16px
}

@media (min-width: 834px) {
    .wallet-main-section__options {
        padding: 0
    }
}

@media (min-width: 834px) {
    .wallet-main-section__options__right {
        width: 50%;
        justify-content: flex-start
    }
}

.wallet-main-section__options__right .tick-button,
.wallet-main-section__options__right .tick-button p {
    width: unset
}

.wallet-main-section__options div.remain {
    color: #4ef09d;
    cursor: pointer
}

.wallet-main-section__list-header {
    width: 100%;
    color: #fff;
    margin: 16px 0 0;
    z-index: 20;
    padding: 24px 0 16px;
    border-top: 1px solid #666;
    border-bottom: 1px solid #666
}

.wallet-main-section__list-header div.info {
    width: 30%;
    text-align: right;
    padding-right: 24px
}

.wallet-main-section__list-header div.value {
    width: 22%;
    text-align: right
}

.wallet-main-section__list-header div.value img {
    margin-left: 8px;
    cursor: pointer
}

.wallet-main-section__list {
    width: 100%;
    padding-bottom: 240px;
    z-index: 10
}

.wallet-main-section__list__empty {
    width: 100%;
    padding: 40px 0
}

.wallet-main-section__list__empty img {
    width: 80px
}

@media (min-width: 992px) {
    .wallet-main-section__list__empty {
        padding: 100px 0
    }

    .wallet-main-section__list__empty img {
        width: 100px
    }
}

.wallet-main-section__list__mobile-item {
    width: 100%;
    padding: 12px 16px;
    border-bottom: 1px solid #333
}

.wallet-main-section__list__mobile-item div.info {
    align-items: flex-start
}

.wallet-main-section__list__mobile-item div.info span {
    width: 100%;
    text-align: right;
    line-height: 15px
}

.wallet-main-section__list__mobile-item div.info span.title_fa {
    color: #fff
}

.wallet-main-section__list__mobile-item div.info span.code {
    color: #b2b2b2;
    margin-top: 4px
}

.wallet-main-section__list__mobile-item div.val-total {
    color: #b2b2b2
}

.wallet-main-section__list__mobile-item div.val-total span.val {
    direction: ltr;
    margin-left: 4px
}

.wallet-main-section__list__mobile-item div.total {
    color: #fff
}

.wallet-main-section__list__mobile-item div.total span.val {
    direction: ltr;
    margin-right: 4px
}

.wallet-main-section__list__mobile-item img.image {
    width: 24px;
    margin-left: 8px
}

.wallet-main-section__list__mobile-item img.arrow {
    width: 16px;
    margin-right: 16px
}

.wallet-main-section__list__desktop-item {
    width: 100%;
    border-bottom: 1px solid #222;
    padding: 24px 0
}

.wallet-main-section__list__desktop-item div.info {
    align-items: flex-start;
    width: 30%;
    padding-right: 16px
}

.wallet-main-section__list__desktop-item div.info span {
    width: 100%;
    text-align: right;
    line-height: 15px
}

.wallet-main-section__list__desktop-item div.info span.title_fa {
    color: #fff
}

@media (min-width: 992px) {
    .wallet-main-section__list__desktop-item div.info span.title_fa {
        font-size: 16px
    }
}

.wallet-main-section__list__desktop-item div.info span.code {
    color: #b2b2b2;
    margin-top: 4px
}

@media (min-width: 992px) {
    .wallet-main-section__list__desktop-item div.info span.code {
        font-size: 14px
    }
}

.wallet-main-section__list__desktop-item div.value {
    width: 22%;
    align-items: flex-start
}

.wallet-main-section__list__desktop-item div.value div {
    color: #fff
}

@media (min-width: 992px) {
    .wallet-main-section__list__desktop-item div.value div {
        font-size: 14px
    }
}

.wallet-main-section__list__desktop-item div.value div.val-total {
    color: #b2b2b2
}

@media (min-width: 992px) {
    .wallet-main-section__list__desktop-item div.value div.val-total {
        font-size: 14px
    }
}

.wallet-main-section__list__desktop-item div.value span.val {
    direction: ltr;
    margin: 0 4px
}

.wallet-main-section__list__desktop-item div.buttons {
    width: 25%;
    margin-left: 16px
}

@media (min-width: 992px) {
    .wallet-main-section__list__desktop-item div.buttons {
        font-size: 14px
    }
}

.wallet-main-section__list__desktop-item div.buttons button {
    background-color: unset;
    outline: unset;
    margin-right: 8px;
    color: #4ef09d;
    border: unset;
    cursor: pointer
}

@media (min-width: 992px) {
    .wallet-main-section__list__desktop-item div.buttons button {
        margin-right: 30px
    }
}

.wallet-main-section__list__desktop-item img.image {
    width: 24px;
    margin-left: 8px
}

@media (min-width: 992px) {
    .wallet-main-section__list__desktop-item img.image {
        width: 32px
    }
}

.wallet-main-section__info-modal h2 {
    margin-top: 0;
    text-align: center
}

.wallet-main-section__info-modal p {
    margin-top: 8px
}

.wallet-main-section__info-modal__button {
    width: 100%;
    margin-top: 24px
}

.wallet-main-section-light__bottom {
    width: 100%;
    background-color: #e9e9e9;
    padding-bottom: 24px;
    margin-top: 8px
}

.wallet-main-section-light__bottom .input4 {
    width: calc(100% - 32px);
    margin: 16px
}

@media (min-width: 834px) {
    .wallet-main-section-light__bottom {
        background-color: unset;
        margin-top: 56px;
        padding: 0
    }

    .wallet-main-section-light__bottom .input4 {
        width: 300px;
        margin: 0 0 0 30px
    }
}

.wallet-main-section-light__sticky {
    width: 100%;
    position: sticky;
    top: 50px;
    background-color: #e9e9e9;
    z-index: 50;
    padding-top: 24px
}

.wallet-main-section-light__sticky.pre-feature {
    top: 0
}

.wallet-main-section-light__options {
    width: 100%;
    padding: 0 16px
}

@media (min-width: 834px) {
    .wallet-main-section-light__options {
        padding: 0
    }
}

@media (min-width: 834px) {
    .wallet-main-section-light__options__right {
        width: 50%;
        justify-content: flex-start
    }
}

.wallet-main-section-light__options__right .tick-button,
.wallet-main-section-light__options__right .tick-button p {
    width: unset
}

.wallet-main-section-light__options div.remain {
    color: #02a67f;
    cursor: pointer
}

.wallet-main-section-light__list-header {
    width: 100%;
    color: #1a1a1a;
    margin: 16px 0 0;
    z-index: 20;
    padding: 24px 0 16px;
    border-top: 1px solid #b2b2b2;
    border-bottom: 1px solid #b2b2b2
}

.wallet-main-section-light__list-header div.info {
    width: 30%;
    text-align: right;
    padding-right: 24px
}

.wallet-main-section-light__list-header div.value {
    width: 22%;
    text-align: right
}

.wallet-main-section-light__list-header div.value img {
    margin-left: 8px;
    cursor: pointer
}

.wallet-main-section-light__list {
    width: 100%;
    padding-bottom: 240px;
    z-index: 10
}

.wallet-main-section-light__list__empty {
    width: 100%;
    padding: 40px 0
}

.wallet-main-section-light__list__empty img {
    width: 80px
}

@media (min-width: 992px) {
    .wallet-main-section-light__list__empty {
        padding: 100px 0
    }

    .wallet-main-section-light__list__empty img {
        width: 100px
    }
}

.wallet-main-section-light__list__mobile-item {
    width: 100%;
    padding: 12px 16px;
    border-bottom: 1px solid #d8d8d8
}

.wallet-main-section-light__list__mobile-item div.info {
    align-items: flex-start
}

.wallet-main-section-light__list__mobile-item div.info span {
    width: 100%;
    text-align: right;
    line-height: 15px
}

.wallet-main-section-light__list__mobile-item div.info span.title_fa {
    color: #1a1a1a
}

.wallet-main-section-light__list__mobile-item div.info span.code {
    color: #666;
    margin-top: 4px
}

.wallet-main-section-light__list__mobile-item div.val-total {
    color: #666
}

.wallet-main-section-light__list__mobile-item div.val-total span.val {
    direction: ltr;
    margin-left: 4px
}

.wallet-main-section-light__list__mobile-item div.total {
    color: #1a1a1a
}

.wallet-main-section-light__list__mobile-item div.total span.val {
    direction: ltr;
    margin-right: 4px
}

.wallet-main-section-light__list__mobile-item img.image {
    width: 24px;
    margin-left: 8px
}

.wallet-main-section-light__list__mobile-item img.arrow {
    width: 16px;
    margin-right: 16px
}

.wallet-main-section-light__list__desktop-item {
    width: 100%;
    border-bottom: 1px solid #d8d8d8;
    padding: 24px 0
}

.wallet-main-section-light__list__desktop-item div.info {
    align-items: flex-start;
    width: 30%;
    padding-right: 16px
}

.wallet-main-section-light__list__desktop-item div.info span {
    width: 100%;
    text-align: right;
    line-height: 15px
}

.wallet-main-section-light__list__desktop-item div.info span.title_fa {
    color: #1a1a1a
}

@media (min-width: 992px) {
    .wallet-main-section-light__list__desktop-item div.info span.title_fa {
        font-size: 16px
    }
}

.wallet-main-section-light__list__desktop-item div.info span.code {
    color: #666;
    margin-top: 4px
}

@media (min-width: 992px) {
    .wallet-main-section-light__list__desktop-item div.info span.code {
        font-size: 14px
    }
}

.wallet-main-section-light__list__desktop-item div.value {
    width: 22%;
    align-items: flex-start
}

.wallet-main-section-light__list__desktop-item div.value div {
    color: #1a1a1a
}

@media (min-width: 992px) {
    .wallet-main-section-light__list__desktop-item div.value div {
        font-size: 14px
    }
}

.wallet-main-section-light__list__desktop-item div.value div.val-total {
    color: #666
}

@media (min-width: 992px) {
    .wallet-main-section-light__list__desktop-item div.value div.val-total {
        font-size: 14px
    }
}

.wallet-main-section-light__list__desktop-item div.value span.val {
    direction: ltr;
    margin: 0 4px
}

.wallet-main-section-light__list__desktop-item div.buttons {
    width: 25%;
    margin-left: 16px
}

@media (min-width: 992px) {
    .wallet-main-section-light__list__desktop-item div.buttons {
        font-size: 14px
    }
}

.wallet-main-section-light__list__desktop-item div.buttons button {
    background-color: unset;
    outline: unset;
    margin-right: 8px;
    color: #02a67f;
    border: unset;
    cursor: pointer
}

@media (min-width: 992px) {
    .wallet-main-section-light__list__desktop-item div.buttons button {
        margin-right: 30px
    }
}

.wallet-main-section-light__list__desktop-item img.image {
    width: 24px;
    margin-left: 8px
}

@media (min-width: 992px) {
    .wallet-main-section-light__list__desktop-item img.image {
        width: 32px
    }
}

.wallet-loan-section__bottom {
    width: 100%;
    margin-top: 8px
}

@media (min-width: 834px) {
    .wallet-loan-section__bottom {
        margin-top: 64px
    }
}

.wallet-loan-section__sticky-tab {
    width: 100%;
    position: sticky;
    background-color: #1a1a1a;
    z-index: 50;
    top: 60px
}

@media (min-width: 834px) {
    .wallet-loan-section__sticky-tab {
        top: 0
    }
}

.wallet-loan-section__sticky-tab .switch3 {
    margin-bottom: 0;
    padding-top: 8px;
    border-bottom: unset
}

.wallet-loan-section__list-header {
    width: 100%;
    border-top: 1px solid #666;
    border-bottom: 1px solid #666;
    padding: 24px;
    color: #fff
}

.wallet-loan-section__list-header.active div {
    width: 20%;
    display: flex;
    justify-content: center
}

.wallet-loan-section__list-header div.info {
    margin-right: 24px
}

.wallet-loan-section__collaterals {
    width: 100%;
    padding-bottom: 170px;
    z-index: 10
}

.wallet-loan-section__collaterals__row {
    width: 100%;
    border-bottom: 1px solid #333;
    padding: 12px 16px
}

@media (min-width: 834px) {
    .wallet-loan-section__collaterals__row {
        border-bottom: 1px solid #222;
        padding: 24px
    }
}

.wallet-loan-section__collaterals__row div.info {
    color: #fff
}

@media (min-width: 834px) {
    .wallet-loan-section__collaterals__row div.info {
        font-size: 16px
    }
}

.wallet-loan-section__collaterals__row div.info img {
    width: 24px;
    height: 24px
}

@media (min-width: 834px) {
    .wallet-loan-section__collaterals__row div.info img {
        width: 32px;
        height: 32px
    }
}

.wallet-loan-section__collaterals__row div.info div {
    align-items: flex-start;
    margin-right: 8px
}

.wallet-loan-section__collaterals__row div.info span.code {
    font-size: 12px;
    color: #b2b2b2;
    margin-top: -4px
}

@media (min-width: 834px) {
    .wallet-loan-section__collaterals__row div.info span.code {
        font-size: 14px
    }
}

.wallet-loan-section__collaterals__row div.amounts {
    color: #fff
}

@media (min-width: 834px) {
    .wallet-loan-section__collaterals__row div.amounts {
        font-size: 14px
    }
}

.wallet-loan-section__collaterals__row div.amounts div.value {
    font-weight: 300;
    color: #b2b2b2
}

.wallet-loan-section__collaterals__row div.amounts span.code {
    margin-left: 4px
}

.wallet-loan-section__collaterals__empty {
    width: 100%;
    padding: 50px 0
}

@media (min-width: 834px) {
    .wallet-loan-section__collaterals__empty {
        padding: 100px 0
    }
}

.wallet-loan-section__collaterals__empty img {
    width: 80px;
    height: 80px
}

@media (min-width: 834px) {
    .wallet-loan-section__collaterals__empty img {
        width: 120px;
        height: 120px
    }
}

.wallet-loan-section__loans {
    width: 100%;
    padding-bottom: 170px
}

.wallet-loan-section__loans__card {
    width: calc(100% - 32px);
    margin: 12px 16px 0;
    background-color: #222;
    padding: 12px 16px;
    border-radius: 8px
}

@media (min-width: 834px) {
    .wallet-loan-section__loans__card {
        background-color: unset;
        padding: 24px;
        border-bottom: 1px solid #222;
        display: flex;
        justify-content: space-between;
        margin: 0;
        width: 100%
    }
}

.wallet-loan-section__loans__row {
    width: 100%;
    margin-bottom: 8px
}

@media (min-width: 834px) {
    .wallet-loan-section__loans__row {
        margin-bottom: 0;
        justify-content: center;
        width: 20%
    }
}

.wallet-loan-section__loans__row span.key {
    color: #b2b2b2
}

.wallet-loan-section__loans__row span.val {
    color: #fff
}

@media (min-width: 834px) {
    .wallet-loan-section__loans__row span.val {
        font-size: 14px
    }
}

.wallet-loan-section__loans__row span.val.btn {
    color: #4ef09d;
    cursor: pointer
}

.wallet-loan-section__loans__row span.val img {
    width: 16px;
    margin-right: 4px
}

.wallet-loan-section__loans__empty {
    width: 100%;
    padding: 50px 0
}

@media (min-width: 834px) {
    .wallet-loan-section__loans__empty {
        padding: 100px 0
    }
}

.wallet-loan-section__loans__empty img {
    width: 80px;
    height: 80px
}

@media (min-width: 834px) {
    .wallet-loan-section__loans__empty img {
        width: 120px;
        height: 120px
    }
}

.wallet-loan-section-light__bottom {
    width: 100%;
    margin-top: 8px
}

@media (min-width: 834px) {
    .wallet-loan-section-light__bottom {
        margin-top: 64px
    }
}

.wallet-loan-section-light__sticky-tab {
    width: 100%;
    position: sticky;
    background-color: #e9e9e9;
    z-index: 50;
    top: 60px
}

@media (min-width: 834px) {
    .wallet-loan-section-light__sticky-tab {
        top: 0
    }
}

.wallet-loan-section-light__sticky-tab .switch3 {
    margin-bottom: 0;
    padding-top: 8px;
    border-bottom: unset
}

.wallet-loan-section-light__list-header {
    width: 100%;
    border-top: 1px solid #b2b2b2;
    border-bottom: 1px solid #b2b2b2;
    padding: 24px;
    color: #1a1a1a
}

.wallet-loan-section-light__list-header.active div {
    width: 20%;
    display: flex;
    justify-content: center
}

.wallet-loan-section-light__list-header div.info {
    margin-right: 24px
}

.wallet-loan-section-light__collaterals {
    width: 100%;
    padding-bottom: 170px;
    z-index: 10
}

.wallet-loan-section-light__collaterals__row {
    width: 100%;
    border-bottom: 1px solid #d8d8d8;
    padding: 12px 16px
}

@media (min-width: 834px) {
    .wallet-loan-section-light__collaterals__row {
        padding: 24px
    }
}

.wallet-loan-section-light__collaterals__row div.info {
    color: #1a1a1a
}

@media (min-width: 834px) {
    .wallet-loan-section-light__collaterals__row div.info {
        font-size: 16px
    }
}

.wallet-loan-section-light__collaterals__row div.info img {
    width: 24px;
    height: 24px
}

@media (min-width: 834px) {
    .wallet-loan-section-light__collaterals__row div.info img {
        width: 32px;
        height: 32px
    }
}

.wallet-loan-section-light__collaterals__row div.info div {
    align-items: flex-start;
    margin-right: 8px
}

.wallet-loan-section-light__collaterals__row div.info span.code {
    font-size: 12px;
    color: #666;
    margin-top: -4px
}

@media (min-width: 834px) {
    .wallet-loan-section-light__collaterals__row div.info span.code {
        font-size: 14px
    }
}

.wallet-loan-section-light__collaterals__row div.amounts {
    color: #1a1a1a
}

@media (min-width: 834px) {
    .wallet-loan-section-light__collaterals__row div.amounts {
        font-size: 14px
    }
}

.wallet-loan-section-light__collaterals__row div.amounts div.value {
    font-weight: 300;
    color: #666
}

.wallet-loan-section-light__collaterals__row div.amounts span.code {
    margin-left: 4px
}

.wallet-loan-section-light__collaterals__empty {
    width: 100%;
    padding: 50px 0
}

@media (min-width: 834px) {
    .wallet-loan-section-light__collaterals__empty {
        padding: 100px 0
    }
}

.wallet-loan-section-light__collaterals__empty img {
    width: 80px;
    height: 80px
}

@media (min-width: 834px) {
    .wallet-loan-section-light__collaterals__empty img {
        width: 120px;
        height: 120px
    }
}

.wallet-loan-section-light__loans {
    width: 100%;
    padding-bottom: 170px
}

.wallet-loan-section-light__loans__card {
    width: calc(100% - 32px);
    margin: 12px 16px 0;
    background-color: #f2f2f2;
    padding: 12px 16px;
    border-radius: 8px
}

@media (min-width: 834px) {
    .wallet-loan-section-light__loans__card {
        background-color: unset;
        padding: 24px;
        border-bottom: 1px solid #d8d8d8;
        display: flex;
        justify-content: space-between;
        margin: 0;
        width: 100%
    }
}

.wallet-loan-section-light__loans__row {
    width: 100%;
    margin-bottom: 8px
}

@media (min-width: 834px) {
    .wallet-loan-section-light__loans__row {
        margin-bottom: 0;
        justify-content: center;
        width: 20%
    }
}

.wallet-loan-section-light__loans__row span.key {
    color: #666
}

.wallet-loan-section-light__loans__row span.val {
    color: #1a1a1a
}

@media (min-width: 834px) {
    .wallet-loan-section-light__loans__row span.val {
        font-size: 14px
    }
}

.wallet-loan-section-light__loans__row span.val.btn {
    color: #02a67f;
    cursor: pointer
}

.wallet-loan-section-light__loans__row span.val img {
    width: 16px;
    margin-right: 4px
}

.wallet-loan-section-light__loans__empty {
    width: 100%;
    padding: 50px 0
}

@media (min-width: 834px) {
    .wallet-loan-section-light__loans__empty {
        padding: 100px 0
    }
}

.wallet-loan-section-light__loans__empty img {
    width: 80px;
    height: 80px
}

@media (min-width: 834px) {
    .wallet-loan-section-light__loans__empty img {
        width: 120px;
        height: 120px
    }
}

.wallet-stake-section__bottom {
    width: 100%;
    margin-top: 24px;
    padding: 0 16px 170px
}

@media (min-width: 834px) {
    .wallet-stake-section__bottom {
        margin-top: 64px;
        padding: 0
    }
}

.wallet-stake-section-light__bottom {
    width: 100%;
    margin-top: 24px;
    padding: 0 16px 170px
}

@media (min-width: 834px) {
    .wallet-stake-section-light__bottom {
        margin-top: 64px;
        padding: 0
    }
}

.wallet-detail {
    width: 100vw
}

.wallet-price-type {
    position: absolute;
    top: 24px;
    background-color: #333;
    border-radius: 8px;
    padding: 16px 16px 16px 32px;
    color: #fff;
    left: -40px;
    z-index: 20
}

.wallet-price-type :last-child {
    margin-top: 16px
}

.wallet-price-type div {
    cursor: pointer
}

.wallet-price-type div.selected {
    color: #4ef09d;
    cursor: pointer
}

.wallet-price-type-light {
    position: absolute;
    top: 24px;
    background-color: #e1e1e1;
    border-radius: 8px;
    padding: 16px 16px 16px 32px;
    color: #1a1a1a;
    left: -40px;
    z-index: 20
}

.wallet-price-type-light :last-child {
    margin-top: 16px
}

.wallet-price-type-light div {
    cursor: pointer
}

.wallet-price-type-light div.selected {
    color: #02a67f;
    cursor: pointer
}

.wallet-remaining {
    width: 100vw;
    padding-bottom: 120px
}

@media (min-width: 834px) {
    .wallet-remaining {
        padding-bottom: 0
    }
}

.wallet-remaining .tick-button {
    width: unset
}

.wallet-remaining__body {
    width: 100%;
    padding: 16px
}

@media (min-width: 834px) {
    .wallet-remaining__body {
        padding: 40px 8%
    }
}

@media (min-width: 992px) {
    .wallet-remaining__body {
        padding: 48px 10% 40px
    }
}

.wallet-remaining__header {
    width: 100%;
    color: #fff;
    margin-bottom: 40px
}

@media (min-width: 992px) {
    .wallet-remaining__header {
        margin-bottom: 56px
    }
}

@media (min-width: 992px) {
    .wallet-remaining__header P {
        font-size: 24
    }
}

.wallet-remaining__header div {
    position: absolute;
    left: 0;
    cursor: pointer
}

@media (min-width: 992px) {
    .wallet-remaining__header div {
        font-size: 14
    }
}

.wallet-remaining__header div img {
    margin-right: 8px
}

.wallet-remaining__list {
    width: 100%
}

.wallet-remaining__list__item {
    width: 100%;
    border-radius: 8px;
    background-color: #222;
    padding: 8px 20px 8px 12px;
    margin-bottom: 8px
}

.wallet-remaining__list__item div.info span {
    color: #fff;
    text-align: right;
    width: 100%;
    line-height: 20px
}

.wallet-remaining__list__item div.info span.code {
    color: #b2b2b2
}

.wallet-remaining__list__item div.info img {
    width: 24px;
    margin-left: 8px
}

.wallet-remaining__list__item div.values {
    color: #fff
}

.wallet-remaining__list__item div.values div {
    width: 100%
}

.wallet-remaining__list__item div.values span.code {
    color: #b2b2b2;
    margin-left: 4px
}

.wallet-remaining__bottom {
    width: 100%;
    padding: 16px;
    position: fixed;
    bottom: 0;
    height: 120px;
    background-color: #1a1a1a;
    right: 0
}

@media (min-width: 834px) {
    .wallet-remaining__bottom {
        position: relative;
        display: flex;
        height: unset;
        bottom: unset;
        right: unset;
        padding: 0;
        justify-content: space-between
    }

    .wallet-remaining__bottom button {
        width: 150px
    }
}

.wallet-remaining__bottom div.out {
    width: 100%
}

@media (min-width: 834px) {
    .wallet-remaining__bottom div.out {
        width: 30%
    }
}

.wallet-remaining__bottom div.out span {
    color: #b2b2b2
}

@media (min-width: 834px) {
    .wallet-remaining__bottom div.out span {
        font-size: 14px
    }
}

.wallet-remaining__bottom div.out span.value {
    color: #fff
}

@media (min-width: 834px) {
    .wallet-remaining__bottom div.out span.value {
        font-size: 14px
    }
}

.wallet-remaining__empty {
    width: 100%
}

.wallet-remaining__empty img {
    width: 80px
}

@media (min-width: 834px) {
    .wallet-remaining__empty img {
        padding-top: 40px;
        width: 80px
    }
}

.wallet-remaining__empty p {
    color: #fff;
    margin-top: 16px;
    text-align: justify;
    margin-bottom: 88px
}

@media (min-width: 834px) {
    .wallet-remaining__empty p {
        margin-top: 0;
        margin-bottom: 64px
    }
}

@media (min-width: 992px) {
    .wallet-remaining__empty p {
        font-size: 14px
    }
}

.wallet-remaining-light {
    width: 100vw;
    padding-bottom: 120px;
    background-color: #e9e9e9
}

@media (min-width: 834px) {
    .wallet-remaining-light {
        padding-bottom: 0
    }
}

.wallet-remaining-light .tick-button {
    width: unset
}

.wallet-remaining-light__body {
    width: 100%;
    padding: 16px
}

@media (min-width: 834px) {
    .wallet-remaining-light__body {
        padding: 40px 8%
    }
}

@media (min-width: 992px) {
    .wallet-remaining-light__body {
        padding: 48px 10% 40px
    }
}

.wallet-remaining-light__header {
    width: 100%;
    color: #1a1a1a;
    margin-bottom: 40px
}

@media (min-width: 992px) {
    .wallet-remaining-light__header {
        margin-bottom: 56px
    }
}

@media (min-width: 992px) {
    .wallet-remaining-light__header P {
        font-size: 24
    }
}

.wallet-remaining-light__header div {
    position: absolute;
    left: 0;
    cursor: pointer
}

@media (min-width: 992px) {
    .wallet-remaining-light__header div {
        font-size: 14
    }
}

.wallet-remaining-light__header div img {
    margin-right: 8px
}

.wallet-remaining-light__list {
    width: 100%
}

.wallet-remaining-light__list__item {
    width: 100%;
    border-radius: 8px;
    background-color: #fff;
    padding: 8px 20px 8px 12px;
    margin-bottom: 8px
}

.wallet-remaining-light__list__item div.info span {
    color: #1a1a1a;
    text-align: right;
    width: 100%;
    line-height: 20px
}

.wallet-remaining-light__list__item div.info span.code {
    color: #666
}

.wallet-remaining-light__list__item div.info img {
    width: 24px;
    margin-left: 8px
}

.wallet-remaining-light__list__item div.values {
    color: #1a1a1a
}

.wallet-remaining-light__list__item div.values div {
    width: 100%
}

.wallet-remaining-light__list__item div.values span.code {
    color: #666;
    margin-left: 4px
}

.wallet-remaining-light__bottom {
    width: 100%;
    padding: 16px;
    position: fixed;
    bottom: 0;
    height: 120px;
    right: 0
}

@media (min-width: 834px) {
    .wallet-remaining-light__bottom {
        position: relative;
        display: flex;
        height: unset;
        bottom: unset;
        right: unset;
        padding: 0;
        justify-content: space-between
    }

    .wallet-remaining-light__bottom button {
        width: 150px
    }
}

.wallet-remaining-light__bottom div.out {
    width: 100%
}

@media (min-width: 834px) {
    .wallet-remaining-light__bottom div.out {
        width: 30%
    }
}

.wallet-remaining-light__bottom div.out span {
    color: #666
}

@media (min-width: 834px) {
    .wallet-remaining-light__bottom div.out span {
        font-size: 14px
    }
}

.wallet-remaining-light__bottom div.out span.value {
    color: #1a1a1a
}

@media (min-width: 834px) {
    .wallet-remaining-light__bottom div.out span.value {
        font-size: 14px
    }
}

.wallet-remaining-light__empty {
    width: 100%
}

.wallet-remaining-light__empty img {
    width: 80px
}

@media (min-width: 834px) {
    .wallet-remaining-light__empty img {
        padding-top: 40px;
        width: 80px
    }
}

.wallet-remaining-light__empty p {
    color: #1a1a1a;
    margin-top: 16px;
    text-align: justify;
    margin-bottom: 88px
}

@media (min-width: 834px) {
    .wallet-remaining-light__empty p {
        margin-top: 0;
        margin-bottom: 64px
    }
}

@media (min-width: 992px) {
    .wallet-remaining-light__empty p {
        font-size: 14px
    }
}

.coin-list-page {
    width: 100vw;
    height: auto;
    padding-top: 0 !important
}

@media (min-width: 834px) {
    .coin-list-page {
        padding-top: 64px !important;
        padding-bottom: 0
    }
}

.coin-list-page__wrapper {
    width: 100%;
    position: relative;
    height: 100%;
    overflow-y: scroll;
    min-height: unset
}

@media (min-width: 834px) {
    .coin-list-page__wrapper {
        position: unset;
        overflow-y: unset
    }
}

.explorer-page {
    width: 100vw;
    height: 100vh;
    overflow-y: scroll
}

.explorer-page__wrapper {
    width: 100%;
    position: relative;
    min-height: unset !important
}

.otc {
    width: 100vw;
    padding-bottom: 170px;
    overflow-y: scroll
}

.otc .element7 {
    padding: 0;
    margin: 48px 0
}

@media (min-width: 834px) {
    .otc .element7 {
        margin-top: 64px 0px
    }
}

.otc .element7__body {
    padding: 0;
    background-color: unset
}

.otc .element7__head {
    text-align: center
}

.otc .element7__list div.row {
    padding: 16px 0
}

@media (min-width: 834px) {
    .otc {
        padding-bottom: 0
    }
}

.otc__pattern-left {
    position: fixed;
    left: 0
}

.otc__pattern-right {
    position: fixed;
    right: 0;
    bottom: 0
}

.otc__body {
    padding: 16px;
    width: 100%
}

.otc__body .market-dropdown {
    z-index: 21
}

.otc__body .market-dropdown__body {
    border-bottom: unset
}

.otc__body .market-dropdown__list {
    width: calc(100vw - 32px)
}

@media (min-width: 834px) {
    .otc__body .market-dropdown__list {
        width: calc(30vw - 70px)
    }
}

@media (min-width: 992px) {
    .otc__body .market-dropdown__list {
        width: calc(30vw - 60px)
    }
}

.otc__body .market-dropdown__list.open {
    height: 330px
}

.otc__body .market-dropdown__list.open div.inside.withSearch {
    height: 258px
}

@media (min-width: 834px) {
    .otc__body {
        background-color: var(--surface_primary);
        border-radius: 16px;
        width: 50%;
        margin: 16px 25%;
        height: unset
    }
}

@media (min-width: 992px) {
    .otc__body {
        width: 30%;
        margin: 16px 35%;
        padding: 16px 30px;
        align-items: flex-start
    }

    .otc__body.has-chart {
        margin: 16px 15%;
        width: 70%
    }

    .otc__body.has-chart .market-dropdown__list {
        width: calc((70vw - 60px)*.4 - 30px)
    }

    .otc__body .button1 {
        margin-top: 32px
    }
}

.otc__body .switch1 {
    width: 100%;
    height: 48px;
    margin-top: 8px;
    border: unset;
    background-color: var(--surface_secondary)
}

@media (min-width: 834px) {
    .otc__body .switch1 {
        font-size: 14px;
        margin-top: 0
    }
}

.otc__body .switch1 div.right,
.otc__body .switch1 div.left {
    border-radius: 8px;
    border: unset
}

.otc__body .switch1 div.left.selected {
    background: #ff5a5a40
}

.otc__body.sell .button1 {
    background-color: #ff5a5a
}

.otc__body__wrapper {
    width: 100%
}

.otc__body__wrapper.has-chart {
    width: 40%;
    padding-left: 30px;
    border-left: 1px dashed var(--border_line_secondary)
}

.otc__head {
    width: 100%;
    padding-bottom: 16px;
    color: var(--body_text_primary)
}

.otc__head img {
    position: absolute;
    left: 0;
    cursor: pointer
}

.otc__markets {
    width: 100%;
    margin: 16px 0
}

.otc__markets__title {
    width: 100%
}

.otc__markets__title span {
    color: var(--body_text_primary);
    margin-bottom: 8px;
    width: calc((100% - 16px)/2);
    text-align: right
}

@media (min-width: 992px) {
    .otc__markets__title span {
        font-size: 14px
    }
}

.otc__markets__market {
    width: 100%
}

.otc__markets__market div.item {
    width: calc((100% - 16px)/2)
}

.otc__markets__market div.currency1,
.otc__markets__market div.currency2 {
    width: calc((100% - 20px)/2)
}

.otc__markets__market div.currency2 .dropdown1__list.open {
    height: 80px !important
}

.otc__input-title {
    width: 100%;
    color: var(--body_text_primary);
    margin-bottom: 8px;
    margin-top: 24px
}

@media (min-width: 992px) {
    .otc__input-title span.title {
        font-size: 14px
    }
}

.otc__input-title img,
.otc__input-title svg {
    margin-left: 8px
}

.otc__row {
    width: 100%;
    color: var(--body_text_secondary);
    margin-bottom: 16px
}

@media (min-width: 992px) {
    .otc__row {
        font-size: 14px
    }
}

.otc__row img,
.otc__row svg {
    margin-left: 8px;
    cursor: pointer
}

.otc__row span.val {
    color: var(--body_text_primary)
}

.otc__risk-popup {
    width: 100vw;
    height: 100vh;
    background-color: var(--popup-bg-color);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    justify-content: flex-end
}

@media (min-width: 834px) {
    .otc__risk-popup {
        padding: 0 30%
    }
}

@media (min-width: 992px) {
    .otc__risk-popup {
        right: 32px;
        width: 22%;
        height: unset;
        top: 100px;
        padding: 0;
        background-color: unset
    }
}

.otc__risk-popup__body {
    width: 100%;
    background-color: var(--popup-body-bg-color);
    border-radius: 16px 16px 0 0;
    padding: 16px 16px 100px
}

@media (min-width: 992px) {
    .otc__risk-popup__body {
        border-radius: 8px;
        padding: 12px;
        border: 1px solid rgba(116, 165, 235, .1490196078)
    }
}

.otc__risk-popup__body__close {
    outline: unset;
    border: unset;
    background-color: unset;
    width: 24px;
    height: 24px;
    align-self: flex-end
}

.otc__risk-popup__body__close img {
    cursor: pointer
}

.otc__risk-popup__body p.text {
    color: var(--body_text_primary);
    width: 100%;
    text-align: justify;
    margin-bottom: 8px
}

@media (min-width: 992px) {
    .otc__risk-popup__body p.text {
        padding: 0 8px;
        text-align: right
    }
}

@media (min-width: 992px) {
    .otc__risk-popup__body div.wrapper {
        flex-direction: row-reverse;
        align-items: flex-start
    }
}

.otc__risk-popup__body button.more-button {
    background-color: transparent;
    border: unset;
    color: var(--body_text_accent);
    align-self: flex-end;
    cursor: pointer
}

.otc__risk-popup__body img.image {
    margin-bottom: 24px
}

@media (min-width: 992px) {
    .otc__risk-popup__body img.image {
        width: 72px
    }
}

.otc-result {
    width: 100vw;
    height: 100vh;
    background-color: var(--popup-bg-color);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 16px
}

@media (min-width: 834px) {
    .otc-result {
        padding: 0 30%
    }
}

@media (min-width: 992px) {
    .otc-result {
        padding: 0 38%
    }
}

@media (min-width: 992px) {
    .otc-result img.image {
        width: 72px
    }
}

.otc-result__body {
    width: 100%;
    background-color: var(--popup-body-bg-color);
    border-radius: 16px;
    padding: 16px 16px 24px
}

.otc-result__body__close {
    outline: unset;
    border: unset;
    background-color: unset;
    width: 24px;
    height: 24px;
    align-self: flex-end
}

.otc-result__body__close img {
    cursor: pointer
}

.otc-result__body p.title {
    color: var(--body_text_primary);
    width: 100%;
    text-align: center;
    margin: 24px 0
}

@media (min-width: 992px) {
    .otc-result__body p.title {
        padding: 0 8px;
        text-align: right
    }
}

.otc-result__data {
    width: 100%;
    background-color: var(--surface_primary);
    padding: 12px 12px 4px;
    border-radius: 8px
}

.otc-result__data div.item {
    width: 100%;
    margin-bottom: 8px
}

.otc-result__data div.key {
    color: var(--body_text_secondary)
}

.otc-result__data div.val {
    color: var(--body_text_primary)
}

.otc-result__data div span.code {
    margin-right: 4px
}

.otc-bank-limit {
    width: 100vw;
    height: 100vh;
    background-color: var(--popup-bg-color);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 16px
}

@media (min-width: 834px) {
    .otc-bank-limit {
        padding: 0 30%
    }
}

@media (min-width: 992px) {
    .otc-bank-limit {
        padding: 0 38%
    }
}

.otc-bank-limit__body {
    width: 100%;
    background-color: var(--popup-body-bg-color);
    border-radius: 16px;
    padding: 16px 16px 24px
}

.otc-bank-limit__body button.close {
    align-self: flex-end;
    background-color: unset;
    outline: unset;
    border: unset;
    width: 24px;
    height: 24px
}

.otc-bank-limit__body button.close img {
    cursor: pointer
}

.otc-bank-limit__body p.title {
    color: var(--body_text_primary);
    width: 100%;
    text-align: center;
    margin-top: 12px
}

.otc-bank-limit__body div.amount {
    margin-top: 12px;
    width: 100%
}

.otc-bank-limit__body div.key {
    color: var(--body_text_secondary)
}

.otc-bank-limit__body div.val {
    color: var(--body_text_primary)
}

.otc-bank-limit__body div.val span {
    margin-right: 4px
}

.otc-lazy {
    --otc-lazy-bg: #1a1a1a;
    --otc-lazy-bg-desktop: #222;
    --otc-lazy-item: #333;
    --otc-lazy-text: #b2b2b2;
    z-index: 22;
    height: calc(100% - 100px);
    background-color: var(--otc-lazy-bg);
    overflow: hidden;
    position: absolute;
    width: 100%;
    top: 100px;
    left: 0
}

.otc-lazy.light {
    --otc-lazy-bg: #e9e9e9;
    --otc-lazy-bg-desktop: #f2f2f2;
    --otc-lazy-item: #fff;
    --otc-lazy-text: #666
}

@media (min-width: 834px) {
    .otc-lazy {
        height: calc(100% - 130px);
        top: 130px;
        background-color: var(--otc-lazy-bg-desktop)
    }
}

.otc-lazy__body {
    width: 100%;
    height: 100%
}

.otc-lazy__body__markets {
    width: 100%;
    margin-top: 8px
}

.otc-lazy__body__markets div.item {
    width: 48%;
    height: 48px;
    background-color: var(--otc-lazy-item);
    padding-right: 12px;
    border-radius: 8px
}

.otc-lazy__body div.row2 {
    width: 100%;
    margin-top: 16px
}

.otc-lazy__body div.row2 div.input-box {
    background-color: var(--otc-lazy-item);
    width: 100%;
    margin-top: 8px;
    height: 48px;
    padding-right: 12px;
    border-radius: 8px
}

.otc-lazy__body div.factor {
    width: 100%;
    height: 16px;
    margin-top: 16px;
    color: var(--otc-lazy-text)
}

.otc-lazy__body div.button {
    margin: 20px 0;
    height: 48px;
    width: 100%
}

.otc-chart {
    width: 100vw;
    height: 100vh;
    background-color: var(--popup-bg-color);
    position: fixed;
    top: 0;
    left: 0;
    padding: 16px;
    opacity: 0;
    z-index: 100
}

@media (min-width: 834px) {
    .otc-chart {
        position: relative;
        width: 60%;
        height: 100%;
        top: unset;
        left: unset;
        background-color: unset;
        padding: 0 30px 0 0;
        z-index: 90
    }
}

.otc-chart.open {
    opacity: 1
}

.otc-chart__body {
    width: 100%;
    background-color: var(--popup-body-bg-color);
    border-radius: 16px;
    padding: 16px 16px 24px;
    transform: scale(0);
    transition: transform .3s ease-in-out
}

@media (min-width: 834px) {
    .otc-chart__body {
        background-color: unset;
        padding: 0
    }
}

.otc-chart__body.open {
    transform: scale(1)
}

.otc-chart__close {
    outline: unset;
    border: unset;
    background-color: unset;
    width: 24px;
    height: 24px
}

.otc-chart__close img {
    cursor: pointer;
    transform: rotate(180deg)
}

.otc-chart__header {
    width: 100%;
    color: var(--body_text_primary)
}

.otc-chart__title {
    width: 100%;
    color: var(--body_text_primary);
    padding-bottom: 8px
}

.otc-chart__price-info {
    width: 100%;
    color: var(--body_text_secondary);
    padding: 8px 0;
    border-bottom: 1px solid var(--border_line_tertiary);
    border-top: 1px solid var(--border_line_tertiary)
}

.otc-chart__price {
    width: 100%
}

.otc-chart__price span.value {
    color: var(--body_text_primary);
    margin-right: 4px
}

.otc-chart__change {
    width: 100%
}

.otc-chart__change span.value {
    direction: ltr;
    color: #ff5a5a
}

.otc-chart__change span.value.up {
    color: var(--body_text_accent)
}

.otc-chart__options {
    width: 100%;
    margin-top: 16px
}

.otc-chart__options__title {
    width: 100%;
    color: var(--body_text_primary)
}

.otc-chart__options__interval {
    width: 100%;
    margin-top: 8px
}

.otc-chart__options__interval div.item {
    color: var(--body_text_primary)
}

.otc-chart__options__interval div.item span {
    margin-right: 4px
}

.otc-chart__radio {
    width: 20px;
    height: 20px;
    border-radius: 10px;
    padding: 4px;
    border: 2px solid #b2b2b2
}

.otc-chart__radio.selected {
    border: 2px solid var(--border_line_primary)
}

.otc-chart__radio.selected div {
    width: 100%;
    height: 100%;
    background-color: var(--border_line_primary);
    border-radius: 50%
}

.otc-chart__chart {
    width: 100%;
    height: 230px !important;
    z-index: 12;
    margin-top: 24px
}

@media (min-width: 992px) {
    .otc-chart__chart {
        height: 350px !important
    }
}

.otc-chart__chart .element5 {
    position: absolute;
    border: unset
}

.otc-chart__chart iframe {
    height: 100% !important;
    width: 100% !important
}

.otc-intro {
    width: 100vw;
    height: 100vh;
    background-color: var(--popup-bg-color);
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 100
}

.otc-intro.open {
    opacity: 1
}

.otc-intro__body {
    background-color: #02a67f;
    border-radius: 10px;
    padding: 12px;
    transform: scale(0);
    transition: transform .3s ease-in-out;
    color: #fff;
    width: calc((100% - 52px)/2);
    position: absolute;
    top: 240px;
    left: 16px
}

.otc-intro__body span {
    line-height: 18px
}

@media (min-width: 834px) {
    .otc-intro__body {
        width: calc((50% - 52px)/2);
        left: calc(25% + 20px);
        top: 300px
    }
}

@media (min-width: 992px) {
    .otc-intro__body {
        width: calc((30% - 52px)/2);
        left: calc(35% + 30px)
    }
}

.otc-intro__body.open {
    transform: scale(1)
}

.otc-intro__arrow {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #02a67f;
    position: absolute;
    top: -8px;
    left: 60px
}

.otc-intro__button {
    border-radius: 12px 8px;
    background-color: #fff;
    border: unset;
    outline: unset;
    width: 70px;
    height: 28px;
    margin-top: 10px;
    cursor: pointer;
    color: #1a1a1a
}

.otc-wallet {
    height: 100vh;
    width: 100vw;
    padding-bottom: 100px
}

@media (min-width: 834px) {
    .otc-wallet {
        padding-bottom: 0;
        overflow-y: hidden
    }
}

.otc-wallet__pattern-left {
    position: absolute;
    left: 0
}

.otc-wallet__pattern-right {
    position: absolute;
    right: 0;
    bottom: 0
}

.otc-wallet__body {
    padding: 16px;
    width: 100%
}

@media (min-width: 834px) {
    .otc-wallet__body {
        background-color: var(--surface_primary);
        border-radius: 16px;
        width: 40%;
        margin: 16px 30%;
        height: calc(100% - 32px);
        overflow-y: scroll
    }

    .otc-wallet__body .button1 {
        margin-top: 0 !important;
        position: absolute;
        right: 16px;
        bottom: 16px;
        width: calc(100% - 32px)
    }
}

@media (min-width: 992px) {
    .otc-wallet__body {
        width: 30%;
        margin: 16px 35%;
        padding: 24px 30px 16px
    }

    .otc-wallet__body .button1 {
        right: 30px;
        width: calc(100% - 60px)
    }
}

.otc-wallet__top {
    width: 100%;
    margin-top: 8px
}

@media (min-width: 834px) {
    .otc-wallet__top {
        margin-top: 0
    }
}

.otc-wallet__close {
    width: 24px;
    height: 24px;
    background-color: unset;
    border: unset;
    outline: unset
}

.otc-wallet__close img {
    cursor: pointer
}

.otc-wallet__title {
    width: 100%;
    margin-top: 32px;
    color: var(--body_text_primary);
    text-align: right
}

@media (min-width: 992px) {
    .otc-wallet__title {
        font-size: 14px
    }
}

.otc-wallet__currency {
    width: 100%
}

.otc-wallet__currency img {
    width: 24px;
    margin-left: 8px
}

.otc-wallet__currency span {
    color: var(--body_text_primary)
}

.otc-wallet__currency span.code {
    color: var(--body_text_secondary);
    margin-right: 8px
}

.otc-wallet__type {
    width: 100%;
    background-color: var(--surface_senary);
    border-radius: 16px;
    height: 54px;
    padding-right: 16px;
    margin-top: 12px;
    cursor: pointer
}

@media (min-width: 992px) {
    .otc-wallet__type button {
        font-size: 12px !important
    }
}

.otc-wallet__input-title {
    width: 100%;
    text-align: right;
    color: var(--body_text_primary);
    margin-bottom: 8px
}

@media (min-width: 992px) {
    .otc-wallet__input-title {
        font-size: 14px
    }
}

.otc-wallet__commission {
    width: 100%;
    color: var(--body_text_primary)
}

@media (min-width: 992px) {
    .otc-wallet__commission {
        font-size: 14px
    }
}

.otc-wallet__commission div.key {
    color: var(--body_text_secondary)
}

.otc-wallet__commission div.val span {
    margin-right: 4px
}

.otc-insuff {
    width: 100vw;
    height: 100vh;
    padding-bottom: 120px
}

@media (min-width: 834px) {
    .otc-insuff {
        padding-bottom: 0
    }
}

.otc-insuff__pattern-left {
    position: absolute;
    left: 0
}

.otc-insuff__pattern-right {
    position: absolute;
    right: 0;
    bottom: 0
}

.otc-insuff__body {
    padding: 16px;
    width: 100%;
    height: 100%
}

.otc-insuff__body .button1 {
    margin-top: 300px
}

@media (min-width: 834px) {
    .otc-insuff__body {
        background-color: var(--surface_primary);
        border-radius: 16px;
        width: 40%;
        margin: 16px 30%;
        height: calc(100% - 32px)
    }

    .otc-insuff__body .button1 {
        margin-top: 0 !important;
        position: absolute;
        right: 16px;
        bottom: 16px;
        width: calc(100% - 32px)
    }
}

@media (min-width: 992px) {
    .otc-insuff__body {
        width: 30%;
        margin: 16px 35%;
        padding: 16px 30px
    }

    .otc-insuff__body .button1 {
        right: 30px;
        width: calc(100% - 60px)
    }
}

.otc-insuff__top {
    width: 100%;
    color: #ff5a5a;
    margin-bottom: 32px;
    align-items: flex-start
}

.otc-insuff__close {
    width: 24px;
    height: 24px;
    background-color: unset;
    border: unset;
    outline: unset;
    margin-right: 16px
}

.otc-insuff__close img {
    cursor: pointer
}

.otc-insuff__input-title {
    width: 100%;
    color: var(--body_text_primary);
    margin-bottom: 8px
}

@media (min-width: 992px) {
    .otc-insuff__input-title span {
        font-size: 14px
    }
}

.withdraw-page {
    width: 100vw
}

@media (min-width: 834px) {
    .withdraw-page {
        overflow-x: hidden;
        padding: 0 30% 24px
    }
}

@media (min-width: 992px) {
    .withdraw-page {
        padding: 0 35% 24px
    }
}

.withdraw-page__pattern-left {
    position: absolute;
    left: 0;
    bottom: 0
}

.withdraw-page__pattern-right {
    position: absolute;
    right: 0
}

.withdraw-page__header {
    width: 100%;
    margin-top: 24px;
    color: #fff
}

.withdraw-page__header button {
    background-color: unset;
    border: unset;
    outline: unset;
    width: 24px;
    height: 24px
}

.withdraw-page__header img {
    cursor: pointer
}

@media (min-width: 992px) {
    .withdraw-page__header {
        margin-top: 16px;
        font-size: 20px
    }
}

.withdraw-page__body {
    padding: 16px 16px 120px;
    width: 100%;
    height: 100%;
    overflow-y: hidden
}

@media (min-width: 834px) {
    .withdraw-page__body {
        background-color: #222;
        border-radius: 16px;
        margin-top: 16px;
        padding-bottom: 16px;
        min-height: 645px
    }
}

@media (min-width: 992px) {
    .withdraw-page__body {
        padding: 16px 30px
    }
}

.withdraw-page__body .dropdown1 {
    margin-bottom: 16px
}

.withdraw-page__input-title {
    color: #fff;
    width: 100%;
    text-align: right;
    margin: 8px 0
}

@media (min-width: 992px) {
    .withdraw-page__input-title {
        font-size: 14px
    }
}

.withdraw-page__input-title.deActive {
    color: #333
}

.withdraw-page__out {
    width: 100%;
    margin-bottom: 8px
}

@media (min-width: 992px) {
    .withdraw-page__out {
        font-size: 14px
    }
}

.withdraw-page__out div.val {
    color: #fff
}

.withdraw-page__out span.key {
    color: #b2b2b2
}

.withdraw-page__out span.code {
    margin-left: 4px
}

.withdraw-page__memoAlert {
    font-size: 12px;
    font-weight: 400 !important
}

.withdraw-page__memoModal {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    color: #fff;
    font-size: 12px
}

.withdraw-page__memoWarning {
    text-align: center;
    font-weight: 500;
    margin-bottom: 8px
}

.withdraw-page__modalContent {
    margin-bottom: 12px
}

.withdraw-page__modalMemoAlert {
    font-size: 12px !important;
    color: #b2b2b2 !important;
    font-weight: 400 !important
}

.withdraw-page__btnsWrapper {
    display: flex;
    gap: 16px
}

.withdraw-page .theBtn {
    width: 140px;
    height: 48px;
    border-radius: 8px
}

.withdraw-page .theBtn.withSeconds span {
    font-size: 10px !important
}

.withdraw-page .theBtn.approve {
    background-color: #333 !important
}

.withdraw-page .theBtn.approve span {
    color: #666 !important
}

.withdraw-page .theBtn.acceptRisk {
    background-color: #ff5a5a !important
}

.withdraw-page .theBtn.acceptRisk span {
    color: #1a1a1a !important
}

.withdraw-page .theBtn.reject {
    background-color: transparent !important;
    border: 1px solid #b2b2b2 !important
}

.withdraw-page .theBtn.reject span {
    color: #e1e1e1 !important
}

.withdraw-page .tick-button button.square {
    border-radius: 4px !important
}

.withdraw-page .tick-button {
    align-items: center !important
}

.withdraw-page__modalCheckbox {
    width: 16px !important;
    height: 16px !important
}

.withdraw-page__modalWrapper {
    padding: 16px
}

.withdraw-page__modalContainer {
    width: 100% !important
}

@media (min-width: 834px) {
    .withdraw-page__modalContainer {
        width: 380px !important
    }

    .withdraw-page__memoModal {
        margin-top: 16px !important
    }

    .withdraw-page__closeBtn {
        top: 16px !important;
        left: 16px !important
    }
}

.withdraw-page__switch-skelton {
    color: #fff
}

.withdraw-page__switch-skelton__container {
    display: flex;
    width: 100%;
    gap: 16px
}

.withdraw-page__switch-skelton__container>span {
    width: 140px;
    display: block
}

.withdraw-page-light {
    width: 100vw;
    background-color: #e9e9e9
}

@media (min-width: 834px) {
    .withdraw-page-light {
        overflow: hidden;
        padding: 0 30% 24px
    }
}

@media (min-width: 992px) {
    .withdraw-page-light {
        padding: 0 35% 24px
    }
}

.withdraw-page-light__pattern-left {
    position: absolute;
    left: 0;
    bottom: 0
}

.withdraw-page-light__pattern-right {
    position: absolute;
    right: 0
}

.withdraw-page-light__header {
    width: 100%;
    margin-top: 24px;
    color: #1a1a1a
}

.withdraw-page-light__header button {
    background-color: unset;
    border: unset;
    outline: unset;
    width: 24px;
    height: 24px
}

.withdraw-page-light__header img {
    cursor: pointer
}

@media (min-width: 992px) {
    .withdraw-page-light__header {
        margin-top: 16px;
        font-size: 20px
    }
}

.withdraw-page-light__body {
    padding: 16px 16px 120px;
    width: 100%;
    height: 100%;
    overflow-y: hidden
}

@media (min-width: 834px) {
    .withdraw-page-light__body {
        background-color: #f2f2f2;
        border-radius: 16px;
        margin-top: 16px;
        padding-bottom: 16px;
        min-height: 645px
    }
}

@media (min-width: 992px) {
    .withdraw-page-light__body {
        padding: 16px 30px
    }
}

.withdraw-page-light__body .dropdown1 {
    margin-bottom: 16px
}

.withdraw-page-light__input-title {
    color: #1a1a1a;
    width: 100%;
    text-align: right;
    margin: 8px 0
}

@media (min-width: 992px) {
    .withdraw-page-light__input-title {
        font-size: 14px
    }
}

.withdraw-page-light__out {
    width: 100%;
    margin-bottom: 8px
}

@media (min-width: 992px) {
    .withdraw-page-light__out {
        font-size: 14px
    }
}

.withdraw-page-light__out div.val {
    color: #1a1a1a
}

.withdraw-page-light__out span.key {
    color: #666
}

.withdraw-page-light__out span.code {
    margin-left: 4px
}

.withdraw-page-light__memoAlert {
    font-size: 12px
}

.withdraw-page-light__memoModal {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    color: #1a1a1a;
    font-size: 12px
}

.withdraw-page-light__memoWarning {
    text-align: center;
    font-weight: 500;
    margin-bottom: 8px
}

.withdraw-page-light__modalContent {
    margin-bottom: 12px
}

.withdraw-page-light__modalMemoAlert {
    font-size: 12px;
    color: #333;
    font-weight: 400 !important
}

.withdraw-page-light__modalCheckbox {
    width: 16px !important;
    height: 16px !important
}

.withdraw-page-light__btnsWrapper {
    display: flex;
    gap: 16px
}

.withdraw-page-light .theBtn {
    width: 140px;
    height: 48px;
    border-radius: 8px
}

.withdraw-page-light .theBtn.withSeconds span {
    font-size: 10px !important
}

.withdraw-page-light .theBtn.approve {
    background-color: #d8d8d8 !important
}

.withdraw-page-light .theBtn.approve span {
    color: #666 !important
}

.withdraw-page-light .theBtn.acceptRisk {
    background-color: #ff5a5a !important
}

.withdraw-page-light .theBtn.acceptRisk span {
    color: #1a1a1a !important
}

.withdraw-page-light .theBtn.reject {
    background-color: transparent !important;
    border: 1px solid #333 !important
}

.withdraw-page-light .theBtn.reject span {
    color: #333 !important
}

.withdraw-page-light .tick-button button.square {
    border-radius: 4px !important
}

.withdraw-page-light .tick-button button.selected {
    background-color: #4ef09d !important
}

.withdraw-page-light .tick-button {
    align-items: center !important
}

.withdraw-verify {
    width: 100vw;
    height: 100vh;
    background-color: #3a3a3ad1;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 16px
}

@media (min-width: 834px) {
    .withdraw-verify {
        padding: 0 30%
    }
}

@media (min-width: 992px) {
    .withdraw-verify {
        padding: 0 38%
    }
}

.withdraw-verify__body {
    width: 100%;
    background-color: #1a1a1a;
    border-radius: 16px;
    padding: 16px 16px 24px
}

.withdraw-verify__body p.title {
    color: #fff;
    width: 100%;
    text-align: center;
    margin-bottom: 12px
}

@media (min-width: 992px) {
    .withdraw-verify__body p.title {
        font-size: 16px
    }
}

.withdraw-verify__body div.close {
    width: 100%
}

.withdraw-verify__body div.close img {
    cursor: pointer
}

.withdraw-verify__body img.image {
    margin-bottom: 24px
}

.withdraw-verify__out {
    width: 100%;
    background-color: #222;
    padding: 8px 12px 0;
    border-radius: 8px;
    margin-bottom: 16px
}

.withdraw-verify__out div.item {
    width: 100%;
    margin-bottom: 8px
}

.withdraw-verify__out div.item.address {
    align-items: flex-start
}

.withdraw-verify__out div img {
    width: 16px;
    margin-right: 8px
}

.withdraw-verify__out div.key {
    color: #b2b2b2
}

.withdraw-verify__out div.val {
    color: #fff
}

.withdraw-verify__out div.val.address {
    word-wrap: break-word;
    white-space: pre-line;
    display: inline-block;
    width: calc(100% - 30px);
    text-align: left
}

.withdraw-verify__out div span.title_fa {
    margin-right: 4px
}

.withdraw-verify__inputs {
    width: 100%
}

.withdraw-verify__inputs div.item {
    width: 100%;
    margin-bottom: 16px
}

.withdraw-verify__inputs div.item .button1 {
    margin: 0 8px 0 0;
    width: 115px;
    padding: 0 8px
}

@media (min-width: 992px) {
    .withdraw-verify__inputs div.item .button1 {
        width: 220px
    }
}

.withdraw-verify__inputs div.item .input6 {
    margin: 0
}

.withdraw-verify__save {
    width: 100%;
    color: #b2b2b2;
    cursor: pointer
}

.withdraw-verify__save img {
    margin-left: 16px
}

.withdraw-verify__btns {
    width: 100%
}

.withdraw-verify__btns .button1,
.withdraw-verify__btns .button2 {
    width: calc((100% - 16px)/2)
}

.withdraw-verify-light {
    width: 100vw;
    height: 100vh;
    background-color: #1a1a1ab2;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 16px
}

@media (min-width: 834px) {
    .withdraw-verify-light {
        padding: 0 30%
    }
}

@media (min-width: 992px) {
    .withdraw-verify-light {
        padding: 0 38%
    }
}

.withdraw-verify-light__body {
    width: 100%;
    background-color: #f2f2f2;
    border-radius: 16px;
    padding: 16px 16px 24px
}

.withdraw-verify-light__body p.title {
    color: #1a1a1a;
    width: 100%;
    text-align: center;
    margin-bottom: 12px
}

@media (min-width: 992px) {
    .withdraw-verify-light__body p.title {
        font-size: 16px
    }
}

.withdraw-verify-light__body div.close {
    width: 100%
}

.withdraw-verify-light__body div.close img {
    cursor: pointer
}

.withdraw-verify-light__body img.image {
    margin-bottom: 24px
}

.withdraw-verify-light__out {
    width: 100%;
    background-color: #fff;
    padding: 8px 12px 0;
    border-radius: 8px;
    margin-bottom: 16px
}

.withdraw-verify-light__out div.item {
    width: 100%;
    margin-bottom: 8px
}

.withdraw-verify-light__out div.item.address {
    align-items: flex-start
}

.withdraw-verify-light__out div img {
    width: 16px;
    margin-right: 8px
}

.withdraw-verify-light__out div.key {
    color: #666
}

.withdraw-verify-light__out div.val {
    color: #1a1a1a
}

.withdraw-verify-light__out div.val.address {
    word-wrap: break-word;
    white-space: pre-line;
    display: inline-block;
    width: calc(100% - 30px);
    text-align: left
}

.withdraw-verify-light__out div span.title_fa {
    margin-right: 4px
}

.withdraw-verify-light__inputs {
    width: 100%
}

.withdraw-verify-light__inputs div.item {
    width: 100%;
    margin-bottom: 16px
}

.withdraw-verify-light__inputs div.item .button1 {
    margin: 0 8px 0 0;
    width: 115px;
    padding: 0 8px
}

@media (min-width: 992px) {
    .withdraw-verify-light__inputs div.item .button1 {
        width: 220px
    }
}

.withdraw-verify-light__inputs div.item .input6-light {
    margin: 0
}

.withdraw-verify-light__save {
    width: 100%;
    color: #666;
    cursor: pointer
}

.withdraw-verify-light__save img {
    margin-left: 16px
}

.withdraw-verify-light__btns {
    width: 100%
}

.withdraw-verify-light__btns .button1 {
    width: calc((100% - 16px)/2)
}

.withdraw-verify-light__btns .button2 {
    background-color: unset;
    width: calc((100% - 16px)/2)
}

.withdraw-verify-light .tick-button {
    align-items: center !important
}

@media (min-width: 834px) {
    .withdraw-verify-light__modalContainer {
        width: 380px !important
    }
}

.withdraw-verify-light__switch-skelton {
    color: #e1e1e1
}

.withdraw-verify-light__switch-skelton__container {
    display: flex;
    width: 100%;
    gap: 16px
}

.withdraw-verify-light__switch-skelton__container>span {
    width: 140px;
    display: block
}

.choose-deposit-method {
    z-index: 101
}

.deposit {
    width: 100vw;
    padding-bottom: 120px
}

.deposit.light {
    background-color: #e9e9e9
}

@media (min-width: 834px) {
    .deposit {
        padding-bottom: 0;
        overflow: hidden
    }
}

.deposit__choose-crypto {
    width: 100vw;
    height: 100vh;
    overflow-y: scroll;
    padding-bottom: 120px
}

.deposit__choose-crypto.light {
    background-color: #e9e9e9
}

@media (min-width: 834px) {
    .deposit__choose-crypto {
        padding-bottom: 0
    }
}

.deposit__choose-crypto__body {
    width: 100%
}

.deposit__deposit {
    width: 100vw;
    height: 100vh;
    overflow-y: scroll
}

.deposit__deposit.light {
    background-color: #e9e9e9
}

.deposit__deposit__body {
    width: 100%
}

.history-page {
    width: 100vw;
    height: 100vh
}

@media (min-width: 834px) {
    .history-page {
        padding-bottom: 0;
        overflow-y: hidden
    }
}

.history-page__body {
    padding: 0 16px;
    width: 100%
}

@media (min-width: 834px) {
    .history-page__body {
        display: flex;
        justify-content: space-between;
        padding: 0 30px 0 8%;
        height: 100%
    }
}

@media (min-width: 992px) {
    .history-page__body {
        padding: 0 70px 0 8%
    }
}

.history-page__empty {
    width: 100%;
    height: 100%
}

.history-page__empty img {
    width: 80px
}

@media (min-width: 834px) {
    .history-page__empty img {
        width: 100px
    }
}

.history-page__wrapper {
    width: 100%
}

@media (min-width: 834px) {
    .history-page__wrapper {
        width: calc(100% - 132px);
        height: 100%
    }
}

@media (min-width: 992px) {
    .history-page__wrapper {
        width: calc(100% - 190px)
    }
}

.history-page__options {
    width: 100%;
    padding: 12px 0
}

.history-page__options img {
    margin-right: 16px;
    cursor: pointer
}

.history-page__download {
    position: fixed;
    bottom: 0;
    justify-content: flex-start;
    width: 100%;
    color: #4ef09d;
    cursor: pointer;
    background-color: #1a1a1a;
    padding: 8px 0
}

.history-page__download span {
    margin-right: 8px
}

.history-page__list {
    width: 100%;
    overflow-x: hidden;
    padding-bottom: 120px
}

@media (min-width: 834px) {
    .history-page__list {
        height: calc(100% - 56px);
        padding-bottom: 0;
        overflow-y: scroll
    }
}

.history-page__more {
    color: #4ef09d;
    margin-top: 8px;
    padding-bottom: 30px;
    cursor: pointer
}

.history-page__more .element5 {
    border: unset;
    width: 40px !important;
    height: 40px !important
}

.history-page__more .element5 div {
    width: 32px !important;
    height: 32px !important
}

.history-page__more span {
    margin-right: 8px
}

.history-page__order {
    width: 100%;
    height: 100%
}

@media (min-width: 834px) {
    .history-page__order {
        height: calc(100% - 72px)
    }
}

@media (min-width: 992px) {
    .history-page__order {
        height: calc(100% - 140px)
    }
}

.history-page__order__card {
    width: 100%;
    margin-bottom: 8px;
    background-color: #222;
    border-radius: 8px
}

.history-page__order__card div.row1 {
    width: 100%;
    border-bottom: 1px solid #333;
    padding: 8px
}

.history-page__order__card div.row1__time {
    color: #b2b2b2;
    align-items: flex-end !important
}

.history-page__order__card div.row1__percent {
    width: 30px;
    height: 30px;
    border: 1px solid #4ef09d;
    padding: 1px;
    color: #1a1a1a;
    border-radius: 50%;
    margin-left: 8px
}

.history-page__order__card div.row1__percent.sell {
    border: 1px solid #ff5a5a
}

.history-page__order__card div.row1__percent__inside {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 50%
}

.history-page__order__card div.row1__percent__inside div.bg {
    position: absolute;
    bottom: 0;
    background-color: #4ef09d;
    width: 100%
}

.history-page__order__card div.row1__percent__inside div.bg.sell {
    background-color: #ff5a5a
}

.history-page__order__card div.row1__right {
    display: flex;
    align-items: flex-start
}

.history-page__order__card div.row1__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.history-page__order__card div.row1__market-info div.en {
    color: #b2b2b2
}

.history-page__order__card div.row1__market-info div.fa {
    color: #fff;
    margin-left: 8px
}

.history-page__order__card div.row1__order-info div.mode {
    color: #fff
}

.history-page__order__card div.row1__order-info div.dash {
    color: #fff;
    margin: 0 4px
}

.history-page__order__card div.row1__order-info div.type.sell {
    color: #ff5a5a
}

.history-page__order__card div.row1__order-info div.type.buy {
    color: #4ef09d
}

.history-page__order__card div.row2 {
    width: 100%;
    border-bottom: 1px solid #333
}

.history-page__order__card div.row2.match {
    border: unset
}

.history-page__order__card div.row2 div.item {
    width: 50%;
    padding: 8px
}

.history-page__order__card div.row2 div.item.right {
    border-left: 1px solid #333
}

.history-page__order__card div.row2 div.item div.key {
    color: #b2b2b2
}

.history-page__order__card div.row2 div.item div.val {
    color: #fff
}

.history-page__order__card div.row3 {
    width: 100%
}

.history-page__order__card div.row3__right {
    width: 50%;
    padding: 8px;
    border-left: 1px solid #333
}

.history-page__order__card div.row3__right div.key {
    color: #b2b2b2
}

.history-page__order__card div.row3__right div.val {
    color: #fff
}

.history-page__order__card div.row3__left {
    width: 50%;
    padding: 10px
}

.history-page__order__card div.row3__left div.key {
    color: #b2b2b2
}

.history-page__order__card div.row3__left div.val {
    color: #fff
}

.history-page__order__card div.row3__left .button6 {
    width: 50px !important
}

.history-page__order__desktop-card {
    width: 100%;
    border-bottom: 1px solid #333;
    color: #fff;
    height: 60px
}

@media (min-width: 992px) {
    .history-page__order__desktop-card {
        font-size: 12px
    }
}

.history-page__order__desktop-card .button6 {
    width: 80px
}

.history-page__order__desktop-card div.btn {
    width: 10%
}

.history-page__order__desktop-card span {
    height: 100%;
    width: 10%
}

.history-page__order__desktop-card span.time span {
    width: 100%
}

.history-page__order__desktop-card span.condition {
    width: 5%
}

.history-page__order__desktop-card span.total {
    width: 8%
}

.history-page__order__desktop-card span.type {
    width: 5%
}

.history-page__order__desktop-card span.filled {
    width: 8%
}

.history-page__order__desktop-card span.price,
.history-page__order__desktop-card span.pair {
    width: 12%
}

.history-page__order__desktop-card span.sell {
    color: #ff5a5a
}

.history-page__order__desktop-card span.buy {
    color: #4ef09d
}

.history-page__order__header {
    width: 100%;
    background-color: #222;
    border-radius: 8px 8px 0 0;
    color: #d8d8d8;
    height: 56px
}

@media (min-width: 992px) {
    .history-page__order__header {
        font-size: 14px
    }
}

.history-page__order__header span {
    height: 100%;
    width: 10%
}

.history-page__order__header span.condition {
    width: 5%
}

.history-page__order__header span.total {
    width: 8%
}

.history-page__order__header span.type {
    width: 5%
}

.history-page__order__header span.filled {
    width: 8%
}

.history-page__order__header span.price,
.history-page__order__header span.pair {
    width: 12%
}

.history-page__order__header span.sell {
    color: #ff5a5a
}

.history-page__order__header span.buy {
    color: #4ef09d
}

.history-page__deposit {
    width: 100%;
    height: 100%
}

@media (min-width: 834px) {
    .history-page__deposit {
        height: calc(100% - 72px)
    }
}

@media (min-width: 992px) {
    .history-page__deposit {
        height: calc(100% - 140px)
    }
}

.history-page__deposit__card {
    width: 100%;
    margin-bottom: 8px;
    background-color: #222;
    border-radius: 8px
}

.history-page__deposit__card div.top {
    width: 100%;
    padding: 8px;
    border-bottom: 1px solid #333
}

.history-page__deposit__card div.top__left {
    align-items: flex-end !important
}

.history-page__deposit__card div.top__left div.amount,
.history-page__deposit__card div.top__left div.state {
    color: #fff
}

.history-page__deposit__card div.top__left div.state div {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    margin-left: 4px
}

.history-page__deposit__card div.top__right {
    align-items: flex-start !important
}

.history-page__deposit__card div.top__right div.currency span.fa {
    color: #fff;
    margin-left: 8px
}

.history-page__deposit__card div.top__right div.currency span.en {
    color: #b2b2b2
}

.history-page__deposit__card div.top__right div.time {
    color: #b2b2b2;
    margin-top: 8px
}

.history-page__deposit__card div.bottom {
    width: 100%;
    padding: 8px;
    flex-direction: row-reverse !important
}

.history-page__deposit__card div.bottom div.more {
    color: #4ef09d
}

.history-page__deposit__card div.bottom div.network {
    display: flex;
    align-items: center
}

.history-page__deposit__card div.bottom div.network span.key {
    color: #b2b2b2
}

.history-page__deposit__card div.bottom div.network span.val {
    margin-right: 20px;
    color: #fff
}

.history-page__deposit__desktop-card {
    width: 100%;
    border-bottom: 1px solid #333;
    color: #fff;
    height: 60px
}

@media (min-width: 992px) {
    .history-page__deposit__desktop-card {
        font-size: 12px
    }
}

.history-page__deposit__desktop-card div.item {
    width: 16%
}

.history-page__deposit__desktop-card div.state {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    margin: 0 4px
}

.history-page__deposit__desktop-card div.ref {
    width: 16%
}

.history-page__deposit__desktop-card div.ref div.box {
    position: absolute;
    z-index: 10;
    align-items: flex-start !important;
    align-self: center;
    border-radius: 8px;
    padding: 8px;
    background-color: #333;
    max-width: 600px;
    top: 0
}

.history-page__deposit__desktop-card div.ref div.box img {
    cursor: pointer
}

.history-page__deposit__desktop-card div.ref div.box img.copy {
    margin-right: 8px
}

.history-page__deposit__desktop-card div.ref div.box img.close {
    margin-left: 16px
}

.history-page__deposit__desktop-card div.ref div.box span {
    word-wrap: break-word;
    display: unset;
    width: calc(100% - 72px);
    text-align: center
}

.history-page__deposit__desktop-card div.ref span.title {
    color: #4ef09d;
    cursor: pointer
}

.history-page__deposit__desktop-card span {
    height: 100%
}

.history-page__deposit__desktop-card span.item {
    width: 16%
}

.history-page__deposit__desktop-card span.link {
    width: 16%;
    color: #4ef09d;
    cursor: pointer;
    text-decoration: underline
}

.history-page__deposit__header {
    width: 100%;
    background-color: #222;
    border-radius: 8px 8px 0 0;
    color: #d8d8d8;
    height: 56px
}

@media (min-width: 992px) {
    .history-page__deposit__header {
        font-size: 14px
    }
}

.history-page__deposit__header span {
    height: 100%;
    width: 16%
}

.history-page__deposit-tracker .title {
    color: var(--body_text_secondary);
    margin-bottom: 16px
}

.history-page__deposit-tracker .link {
    color: var(--body_text_accent);
    margin-right: 4px;
    text-decoration: none
}

.history-tab {
    width: 100%;
    height: 92px;
    position: sticky;
    top: 56px;
    z-index: 99;
    padding: 16px 0;
    background-color: #1a1a1a
}

@media (min-width: 834px) {
    .history-tab {
        height: 100%;
        border-radius: 0;
        margin: 0 0 0 30px;
        width: 102px;
        background-color: #222;
        padding: 0;
        position: unset
    }
}

@media (min-width: 992px) {
    .history-tab {
        width: 160px
    }
}

.history-tab__title {
    width: 100%;
    color: #fff;
    margin-top: 32px
}

@media (min-width: 992px) {
    .history-tab__title {
        margin-top: 40px;
        font-size: 20px
    }
}

.history-tab__list {
    width: 100%;
    height: 100%;
    background-color: #222;
    border-radius: 8px
}

@media (min-width: 834px) {
    .history-tab__list {
        flex-direction: column !important;
        height: calc(100% - 64px)
    }
}

.history-tab__item {
    height: 100%;
    width: 25%;
    color: #d8d8d8;
    cursor: pointer
}

@media (min-width: 834px) {
    .history-tab__item {
        width: 100%;
        font-size: 14px
    }
}

@media (min-width: 834px) {
    .history-tab__item span {
        line-height: unset
    }
}

.history-tab__item.selectd {
    color: #4ef09d
}

.history-tab__item img,
.history-tab__item svg {
    width: 24px
}

@media (min-width: 834px) {

    .history-tab__item img,
    .history-tab__item svg {
        width: 32px
    }
}

@media (min-width: 992px) {

    .history-tab__item img,
    .history-tab__item svg {
        width: 40px;
        margin-bottom: 8px
    }
}

.history-detail-popup {
    width: 100vw;
    height: 100vh;
    background-color: #3a3a3ad1;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    padding: 16px
}

@media (min-width: 834px) {
    .history-detail-popup {
        padding: 0 30%
    }
}

@media (min-width: 992px) {
    .history-detail-popup {
        padding: 0 38%
    }
}

.history-detail-popup__body {
    width: 100%;
    background-color: #1a1a1a;
    border-radius: 16px;
    padding: 16px 16px 0
}

.history-detail-popup__body div.close {
    width: 100%;
    justify-content: flex-end !important
}

.history-detail-popup__body div.close img {
    cursor: pointer
}

.history-detail-popup__rows {
    width: 100%
}

.history-detail-popup__rows :last-child {
    border: unset
}

.history-detail-popup__row1 {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid #222;
    align-items: flex-start
}

.history-detail-popup__row1 div.key {
    color: #b2b2b2
}

.history-detail-popup__row1 div.receipt {
    color: #4ef09d;
    text-decoration: underline;
    text-decoration-color: #4ef09d
}

.history-detail-popup__row1 div.val {
    color: #fff;
    width: 80%;
    word-wrap: break-word;
    justify-content: flex-end;
    align-items: flex-start
}

.history-detail-popup__row1 div.val img {
    width: 20px;
    margin-right: 4px
}

.history-detail-popup__row1 div.val div {
    width: calc(100% - 30px);
    text-align: left;
    word-wrap: break-word
}

.history-detail-popup__currency {
    width: 100%;
    margin-bottom: 8px
}

.history-detail-popup__currency span.en {
    color: #b2b2b2
}

.history-detail-popup__currency span.fa {
    color: #fff;
    margin-left: 8px
}

.history-detail-popup__amount {
    width: 100%;
    margin-bottom: 8px;
    color: #fff
}

.history-detail-popup__state {
    width: 100%;
    color: #fff;
    padding-bottom: 8px
}

.history-detail-popup__state div {
    margin-left: 4px;
    width: 8px;
    height: 8px;
    border-radius: 4px
}

.history-filter {
    width: 100vw;
    height: 100vh;
    background-color: #1a1a1a;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99
}

.history-filter .button1 {
    margin-top: 100px
}

@media (min-width: 834px) {
    .history-filter .button1 {
        margin-bottom: 16px;
        margin-top: 120px
    }
}

@media (min-width: 992px) {
    .history-filter .button1 {
        margin: 0;
        width: 100px
    }
}

.history-filter .dropdown1 {
    margin-bottom: 8px
}

.history-filter .dropdown1 div.title {
    font-size: 16px
}

@media (min-width: 992px) {
    .history-filter .dropdown1 div.title {
        font-size: 14px
    }
}

@media (min-width: 992px) {
    .history-filter .dropdown1 {
        margin-bottom: 0;
        margin-left: 16px
    }
}

.history-filter .calender {
    margin-bottom: 8px
}

@media (min-width: 992px) {
    .history-filter .calender {
        margin-bottom: 0;
        margin-left: 16px
    }
}

.history-filter .tick-button {
    width: 120px;
    margin-top: 16px
}

@media (min-width: 992px) {
    .history-filter .tick-button {
        margin-top: 0
    }
}

@media (min-width: 834px) {
    .history-filter {
        padding: 0 30%;
        background-color: #3a3a3ad1;
        display: flex;
        align-items: center;
        justify-content: center
    }
}

@media (min-width: 992px) {
    .history-filter {
        width: 100%;
        height: 48px;
        margin: 32px 0 16px;
        position: relative;
        top: unset;
        left: unset;
        background-color: unset;
        padding: 0;
        z-index: unset
    }
}

.history-filter__body {
    width: 100%;
    padding: 16px 16px 0
}

@media (min-width: 834px) {
    .history-filter__body {
        background-color: #1a1a1a;
        border-radius: 16px
    }
}

@media (min-width: 992px) {
    .history-filter__body {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 0;
        height: 100%
    }
}

.history-filter__header {
    width: 100%;
    padding: 8px 0 40px
}

@media (min-width: 834px) {
    .history-filter__header {
        padding: 0 0 24px
    }
}

.history-filter__header span.title {
    color: #fff
}

.history-filter__header span.delete {
    color: #b2b2b2
}

@media (min-width: 992px) {
    .history-filter__buttons {
        margin: 0;
        position: absolute;
        left: 0;
        z-index: 20
    }
}

.history-filter__buttons span.delete {
    color: #b2b2b2;
    margin-right: 16px;
    cursor: pointer
}

.history-filter__buttons div.lottie-animation {
    width: 100%;
    background-color: #4ef09d;
    border-radius: 8px;
    margin-top: 100px;
    height: 48px
}

.history-filter__buttons div.lottie-animation .svg {
    width: 30%
}

@media (min-width: 834px) {
    .history-filter__buttons div.lottie-animation {
        margin-bottom: 16px;
        margin-top: 120px
    }
}

@media (min-width: 992px) {
    .history-filter__buttons div.lottie-animation {
        margin: 0;
        width: 100px
    }
}

.history-report {
    width: 100vw;
    height: 100vh;
    background-color: #3a3a3ad1;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    padding: 16px
}

.history-report .button1 {
    margin-top: 100px
}

@media (min-width: 834px) {
    .history-report .button1 {
        margin-bottom: 16px;
        margin-top: 120px
    }
}

.history-report .dropdown1,
.history-report .calender {
    margin-bottom: 8px
}

.history-report .dropdown1__value {
    direction: rtl !important
}

@media (min-width: 834px) {
    .history-report {
        padding: 0 30%
    }
}

@media (min-width: 992px) {
    .history-report {
        padding: 0 35%
    }
}

.history-report__body {
    width: 100%;
    padding: 16px;
    background-color: #1a1a1a;
    border-radius: 16px
}

.history-report__header {
    width: 100%;
    padding: 0 0 16px
}

@media (min-width: 834px) {
    .history-report__header {
        padding: 0 0 24px
    }
}

.history-report__header img {
    cursor: pointer
}

.history-report__header span.delete {
    color: #b2b2b2;
    cursor: pointer
}

.history-lazy {
    width: 100%
}

.history-lazy__mobile-item {
    width: 100%;
    background-color: #222;
    border-radius: 8px;
    margin-bottom: 8px
}

.history-lazy__desktop-item {
    width: 100%;
    border-bottom: 1px solid #333;
    height: 60px;
    padding: 18px 20px
}

.history-lazy__desktop-item .lazy-1 {
    background-color: #333
}

.history-lazy__row1 {
    width: 100%;
    height: 64px;
    padding: 12px 8px
}

.history-lazy__row2 {
    width: 100%;
    height: 44px;
    border-top: 1px solid #333
}

.history-lazy__row2 div.section {
    padding: 12px 8px;
    width: 50%;
    height: 100%
}

.history-lazy__row2 div.section.border {
    border-left: 1px solid #333
}

.history-lazy__row3 {
    width: 100%;
    height: 41px;
    border-top: 1px solid #333;
    padding: 12px 8px
}

.history-deposit-tracker-list {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}

@media (min-width: 834px) {
    .history-deposit-tracker-list__wrapper {
        height: calc(100vh - 128px);
        background-color: var(--surface_primary);
        max-width: 500px;
        margin-top: 32px;
        border-radius: 16px;
        overflow: scroll
    }
}

.history-deposit-tracker-list__top-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-inline: 16px;
    border-bottom: 1px solid var(--surface_primary)
}

.history-deposit-tracker-list__banner {
    margin-block: 32px;
    height: 178px;
    width: auto;
    margin-inline: auto
}

.history-deposit-tracker-list__list-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-inline: 16px;
    margin-top: 32px;
    margin-bottom: 8px
}

.history-deposit-tracker-list__list-section__refresh {
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 32px
}

.history-deposit-tracker-list__list-section__refresh .text {
    color: var(--body_text_primary);
    margin-left: 8px
}

.history-deposit-tracker-list__list-section__list {
    width: 100%
}

.history-deposit-tracker-list__list-section__list .no-data {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

.history-deposit-tracker-list__list-section__list .no-data .icon {
    width: 80px;
    height: 80px
}

.history-deposit-tracker-list__tracker-card {
    width: 100%;
    border-bottom: 1px solid var(--border_line_tertiary);
    padding-bottom: 16px;
    padding-top: 12px
}

.history-deposit-tracker-list__tracker-card .cell {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px
}

.history-deposit-tracker-list__tracker-card .cell .key {
    color: var(--body_text_secondary)
}

.history-deposit-tracker-list__tracker-card .cell .val {
    color: var(--body_text_primary)
}

.history-deposit-tracker-list__tracker-card .state .val {
    height: 22px;
    border-radius: 4px;
    padding-inline: 8px
}

.history-deposit-tracker-list__tracker-card .hash .val {
    max-width: 160px;
    overflow: hidden;
    direction: ltr;
    text-overflow: ellipsis;
    white-space: nowrap
}

.history-page-light {
    width: 100vw;
    height: 100vh;
    background-color: #e9e9e9
}

@media (min-width: 834px) {
    .history-page-light {
        padding-bottom: 0;
        overflow-y: hidden
    }
}

.history-page-light__body {
    padding: 0 16px;
    width: 100%
}

@media (min-width: 834px) {
    .history-page-light__body {
        display: flex;
        justify-content: space-between;
        padding: 0 30px 0 8%;
        height: 100%
    }
}

@media (min-width: 992px) {
    .history-page-light__body {
        padding: 0 70px 0 8%
    }
}

.history-page-light__empty {
    width: 100%;
    height: 100%
}

.history-page-light__empty img {
    width: 80px
}

@media (min-width: 834px) {
    .history-page-light__empty img {
        width: 100px
    }
}

.history-page-light__wrapper {
    width: 100%
}

@media (min-width: 834px) {
    .history-page-light__wrapper {
        width: calc(100% - 132px);
        height: 100%
    }
}

@media (min-width: 992px) {
    .history-page-light__wrapper {
        width: calc(100% - 190px)
    }
}

.history-page-light__options {
    width: 100%;
    padding: 12px 0
}

.history-page-light__options img {
    margin-right: 16px;
    cursor: pointer
}

.history-page-light__download {
    position: fixed;
    bottom: 0;
    justify-content: flex-start;
    width: 100%;
    color: #02a67f;
    cursor: pointer;
    background-color: #e9e9e9;
    padding: 8px 0
}

.history-page-light__download span {
    margin-right: 8px
}

.history-page-light__list {
    width: 100%;
    overflow-x: hidden;
    padding-bottom: 120px
}

@media (min-width: 834px) {
    .history-page-light__list {
        height: calc(100% - 56px);
        padding-bottom: 0;
        overflow-y: scroll
    }
}

.history-page-light__more {
    color: #02a67f;
    margin-top: 8px;
    padding-bottom: 30px;
    cursor: pointer
}

.history-page-light__more .element5 {
    border: unset;
    width: 40px !important;
    height: 40px !important
}

.history-page-light__more .element5 div {
    width: 32px !important;
    height: 32px !important
}

.history-page-light__more span {
    margin-right: 8px
}

.history-page-light__order {
    width: 100%;
    height: 100%
}

@media (min-width: 834px) {
    .history-page-light__order {
        height: calc(100% - 72px)
    }
}

@media (min-width: 992px) {
    .history-page-light__order {
        height: calc(100% - 140px)
    }
}

.history-page-light__order__card {
    width: 100%;
    margin-bottom: 8px;
    background-color: #fff;
    border-radius: 8px
}

.history-page-light__order__card div.row1 {
    width: 100%;
    border-bottom: 1px solid #d8d8d8;
    padding: 8px
}

.history-page-light__order__card div.row1__time {
    color: #666;
    align-items: flex-end !important
}

.history-page-light__order__card div.row1__percent {
    width: 30px;
    height: 30px;
    border: 1px solid #02a67f;
    padding: 1px;
    color: #1a1a1a;
    border-radius: 50%;
    margin-left: 8px
}

.history-page-light__order__card div.row1__percent.sell {
    border: 1px solid #ff5a5a
}

.history-page-light__order__card div.row1__percent__inside {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 50%
}

.history-page-light__order__card div.row1__percent__inside div.bg {
    position: absolute;
    bottom: 0;
    background-color: #02a67f;
    width: 100%
}

.history-page-light__order__card div.row1__percent__inside div.bg.sell {
    background-color: #ff5a5a
}

.history-page-light__order__card div.row1__right {
    display: flex;
    align-items: flex-start
}

.history-page-light__order__card div.row1__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.history-page-light__order__card div.row1__market-info div.en {
    color: #666
}

.history-page-light__order__card div.row1__market-info div.fa {
    color: #1a1a1a;
    margin-left: 8px
}

.history-page-light__order__card div.row1__order-info div.mode {
    color: #1a1a1a
}

.history-page-light__order__card div.row1__order-info div.dash {
    color: #1a1a1a;
    margin: 0 4px
}

.history-page-light__order__card div.row1__order-info div.type.sell {
    color: #ff5a5a
}

.history-page-light__order__card div.row1__order-info div.type.buy {
    color: #02a67f
}

.history-page-light__order__card div.row2 {
    width: 100%;
    border-bottom: 1px solid #d8d8d8
}

.history-page-light__order__card div.row2.match {
    border: unset
}

.history-page-light__order__card div.row2 div.item {
    width: 50%;
    padding: 8px
}

.history-page-light__order__card div.row2 div.item.right {
    border-left: 1px solid #d8d8d8
}

.history-page-light__order__card div.row2 div.item div.key {
    color: #666
}

.history-page-light__order__card div.row2 div.item div.val {
    color: #1a1a1a
}

.history-page-light__order__card div.row3 {
    width: 100%
}

.history-page-light__order__card div.row3__right {
    width: 50%;
    padding: 8px;
    border-left: 1px solid #d8d8d8
}

.history-page-light__order__card div.row3__right div.key {
    color: #666
}

.history-page-light__order__card div.row3__right div.val {
    color: #1a1a1a
}

.history-page-light__order__card div.row3__left {
    width: 50%;
    padding: 10px
}

.history-page-light__order__card div.row3__left div.key {
    color: #666
}

.history-page-light__order__card div.row3__left div.val {
    color: #1a1a1a
}

.history-page-light__order__card div.row3__left .button6 {
    width: 50px !important
}

.history-page-light__order__desktop-card {
    width: 100%;
    border-bottom: 1px solid #d8d8d8;
    color: #1a1a1a;
    height: 60px
}

@media (min-width: 992px) {
    .history-page-light__order__desktop-card {
        font-size: 12px
    }
}

.history-page-light__order__desktop-card .button6 {
    width: 80px
}

.history-page-light__order__desktop-card div.btn {
    width: 10%
}

.history-page-light__order__desktop-card span {
    height: 100%;
    width: 10%
}

.history-page-light__order__desktop-card span.time span {
    width: 100%
}

.history-page-light__order__desktop-card span.condition {
    width: 5%
}

.history-page-light__order__desktop-card span.total {
    width: 8%
}

.history-page-light__order__desktop-card span.type {
    width: 5%
}

.history-page-light__order__desktop-card span.filled {
    width: 8%
}

.history-page-light__order__desktop-card span.price,
.history-page-light__order__desktop-card span.pair {
    width: 12%
}

.history-page-light__order__desktop-card span.sell {
    color: #ff5a5a
}

.history-page-light__order__desktop-card span.buy {
    color: #02a67f
}

.history-page-light__order__header {
    width: 100%;
    background-color: #d8d8d8;
    border-radius: 8px 8px 0 0;
    color: #333;
    height: 56px
}

@media (min-width: 992px) {
    .history-page-light__order__header {
        font-size: 14px
    }
}

.history-page-light__order__header span {
    height: 100%;
    width: 10%
}

.history-page-light__order__header span.condition {
    width: 5%
}

.history-page-light__order__header span.total {
    width: 8%
}

.history-page-light__order__header span.type {
    width: 5%
}

.history-page-light__order__header span.filled {
    width: 8%
}

.history-page-light__order__header span.price,
.history-page-light__order__header span.pair {
    width: 12%
}

.history-page-light__order__header span.sell {
    color: #ff5a5a
}

.history-page-light__order__header span.buy {
    color: #02a67f
}

.history-page-light__deposit {
    width: 100%;
    height: 100%
}

@media (min-width: 834px) {
    .history-page-light__deposit {
        height: calc(100% - 72px)
    }
}

@media (min-width: 992px) {
    .history-page-light__deposit {
        height: calc(100% - 140px)
    }
}

.history-page-light__deposit__card {
    width: 100%;
    margin-bottom: 8px;
    background-color: #fff;
    border-radius: 8px
}

.history-page-light__deposit__card div.top {
    width: 100%;
    padding: 8px;
    border-bottom: 1px solid #d8d8d8
}

.history-page-light__deposit__card div.top__left {
    align-items: flex-end !important
}

.history-page-light__deposit__card div.top__left div.amount,
.history-page-light__deposit__card div.top__left div.state {
    color: #1a1a1a
}

.history-page-light__deposit__card div.top__left div.state div {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    margin-left: 4px
}

.history-page-light__deposit__card div.top__right {
    align-items: flex-start !important
}

.history-page-light__deposit__card div.top__right div.currency span.fa {
    color: #1a1a1a;
    margin-left: 8px
}

.history-page-light__deposit__card div.top__right div.currency span.en {
    color: #666
}

.history-page-light__deposit__card div.top__right div.time {
    color: #666;
    margin-top: 8px
}

.history-page-light__deposit__card div.bottom {
    width: 100%;
    padding: 8px;
    flex-direction: row-reverse !important
}

.history-page-light__deposit__card div.bottom div.more {
    color: #02a67f
}

.history-page-light__deposit__card div.bottom div.network {
    display: flex;
    align-items: center
}

.history-page-light__deposit__card div.bottom div.network span.key {
    color: #666
}

.history-page-light__deposit__card div.bottom div.network span.val {
    margin-right: 20px;
    color: #1a1a1a
}

.history-page-light__deposit__desktop-card {
    width: 100%;
    border-bottom: 1px solid #d8d8d8;
    color: #1a1a1a;
    height: 60px
}

@media (min-width: 992px) {
    .history-page-light__deposit__desktop-card {
        font-size: 12px
    }
}

.history-page-light__deposit__desktop-card div.item {
    width: 16%
}

.history-page-light__deposit__desktop-card div.state {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    margin: 0 4px
}

.history-page-light__deposit__desktop-card div.ref {
    width: 16%
}

.history-page-light__deposit__desktop-card div.ref div.box {
    position: absolute;
    z-index: 10;
    align-items: flex-start !important;
    align-self: center;
    border-radius: 8px;
    padding: 8px;
    background-color: #d8d8d8;
    max-width: 600px;
    top: 0
}

.history-page-light__deposit__desktop-card div.ref div.box img {
    cursor: pointer
}

.history-page-light__deposit__desktop-card div.ref div.box img.copy {
    margin-right: 8px
}

.history-page-light__deposit__desktop-card div.ref div.box img.close {
    margin-left: 16px
}

.history-page-light__deposit__desktop-card div.ref div.box span {
    word-wrap: break-word;
    display: unset;
    width: calc(100% - 72px);
    text-align: center
}

.history-page-light__deposit__desktop-card div.ref span.title {
    color: #02a67f;
    cursor: pointer
}

.history-page-light__deposit__desktop-card span {
    height: 100%
}

.history-page-light__deposit__desktop-card span.item {
    width: 16%
}

.history-page-light__deposit__desktop-card span.link {
    width: 16%;
    color: #02a67f;
    cursor: pointer;
    text-decoration: underline
}

.history-page-light__deposit__header {
    width: 100%;
    background-color: #d8d8d8;
    border-radius: 8px 8px 0 0;
    color: #333;
    height: 56px
}

@media (min-width: 992px) {
    .history-page-light__deposit__header {
        font-size: 14px
    }
}

.history-page-light__deposit__header span {
    height: 100%;
    width: 16%
}

.history-page-light__deposit-tracker .title {
    color: var(--body_text_secondary);
    margin-bottom: 16px
}

.history-page-light__deposit-tracker .link {
    color: var(--body_text_accent);
    margin-right: 4px;
    text-decoration: none
}

.history-tab-light {
    width: 100%;
    height: 92px;
    position: sticky;
    top: 56px;
    z-index: 99;
    padding: 16px 0;
    background-color: #e9e9e9;
    border: unset;
    outline: unset
}

@media (min-width: 834px) {
    .history-tab-light {
        height: 100%;
        border-radius: 0;
        margin: 0 0 0 30px;
        width: 102px;
        background-color: #d8d8d8;
        padding: 0;
        position: unset
    }
}

@media (min-width: 992px) {
    .history-tab-light {
        width: 160px
    }
}

.history-tab-light__title {
    width: 100%;
    color: #333;
    margin-top: 32px
}

@media (min-width: 992px) {
    .history-tab-light__title {
        margin-top: 40px;
        font-size: 20px
    }
}

.history-tab-light__list {
    width: 100%;
    height: 100%;
    background-color: #d8d8d8;
    border-radius: 8px
}

@media (min-width: 834px) {
    .history-tab-light__list {
        flex-direction: column !important;
        height: calc(100% - 64px)
    }
}

.history-tab-light__item {
    height: 100%;
    width: 25%;
    color: #666;
    cursor: pointer
}

@media (min-width: 834px) {
    .history-tab-light__item {
        width: 100%;
        font-size: 14px
    }
}

@media (min-width: 834px) {
    .history-tab-light__item span {
        line-height: unset
    }
}

.history-tab-light__item.selectd {
    color: #02a67f
}

.history-tab-light__item img,
.history-tab-light__item svg {
    width: 24px
}

@media (min-width: 834px) {

    .history-tab-light__item img,
    .history-tab-light__item svg {
        width: 32px
    }
}

@media (min-width: 992px) {

    .history-tab-light__item img,
    .history-tab-light__item svg {
        width: 40px;
        margin-bottom: 8px
    }
}

.history-detail-popup-light {
    width: 100vw;
    height: 100vh;
    background-color: #1a1a1ab2;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    padding: 16px
}

@media (min-width: 834px) {
    .history-detail-popup-light {
        padding: 0 30%
    }
}

@media (min-width: 992px) {
    .history-detail-popup-light {
        padding: 0 38%
    }
}

.history-detail-popup-light__body {
    width: 100%;
    background-color: #f2f2f2;
    border-radius: 16px;
    padding: 16px 16px 0
}

.history-detail-popup-light__body div.close {
    width: 100%;
    justify-content: flex-end !important
}

.history-detail-popup-light__body div.close img {
    cursor: pointer
}

.history-detail-popup-light__rows {
    width: 100%
}

.history-detail-popup-light__rows :last-child {
    border: unset
}

.history-detail-popup-light__row1 {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid #d8d8d8;
    align-items: flex-start
}

.history-detail-popup-light__row1 div.key {
    color: #666
}

.history-detail-popup-light__row1 div.receipt {
    color: #02a67f;
    text-decoration: underline;
    text-decoration-color: #02a67f
}

.history-detail-popup-light__row1 div.val {
    color: #1a1a1a;
    width: 80%;
    word-wrap: break-word;
    justify-content: flex-end;
    align-items: flex-start
}

.history-detail-popup-light__row1 div.val img {
    width: 20px;
    margin-right: 4px
}

.history-detail-popup-light__row1 div.val div {
    width: calc(100% - 30px);
    text-align: left;
    word-wrap: break-word
}

.history-detail-popup-light__currency {
    width: 100%;
    margin-bottom: 8px
}

.history-detail-popup-light__currency span.en {
    color: #666
}

.history-detail-popup-light__currency span.fa {
    color: #1a1a1a;
    margin-left: 8px
}

.history-detail-popup-light__amount {
    width: 100%;
    margin-bottom: 8px;
    color: #1a1a1a
}

.history-detail-popup-light__state {
    width: 100%;
    color: #1a1a1a;
    padding-bottom: 8px
}

.history-detail-popup-light__state div {
    margin-left: 4px;
    width: 8px;
    height: 8px;
    border-radius: 4px
}

.history-filter-light {
    width: 100vw;
    height: 100vh;
    background-color: #e9e9e9;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99
}

.history-filter-light .button1 {
    margin-top: 100px
}

@media (min-width: 834px) {
    .history-filter-light .button1 {
        margin-bottom: 16px;
        margin-top: 120px
    }
}

@media (min-width: 992px) {
    .history-filter-light .button1 {
        margin: 0;
        width: 100px
    }
}

.history-filter-light .dropdown1 {
    margin-bottom: 8px
}

.history-filter-light .dropdown1 div.title {
    font-size: 16px
}

@media (min-width: 992px) {
    .history-filter-light .dropdown1 div.title {
        font-size: 14px
    }
}

@media (min-width: 992px) {
    .history-filter-light .dropdown1 {
        margin-bottom: 0;
        margin-left: 16px
    }
}

.history-filter-light .calender {
    margin-bottom: 8px
}

@media (min-width: 992px) {
    .history-filter-light .calender {
        margin-bottom: 0;
        margin-left: 16px
    }
}

.history-filter-light .tick-button {
    width: 120px;
    margin-top: 16px
}

@media (min-width: 992px) {
    .history-filter-light .tick-button {
        margin-top: 0
    }
}

@media (min-width: 834px) {
    .history-filter-light {
        padding: 0 30%;
        background-color: #1a1a1ab2;
        display: flex;
        align-items: center;
        justify-content: center
    }
}

@media (min-width: 992px) {
    .history-filter-light {
        width: 100%;
        height: 48px;
        margin: 32px 0 16px;
        position: relative;
        top: unset;
        left: unset;
        background-color: unset;
        padding: 0;
        z-index: unset
    }
}

.history-filter-light__body {
    width: 100%;
    padding: 16px 16px 0
}

@media (min-width: 834px) {
    .history-filter-light__body {
        background-color: #e9e9e9;
        border-radius: 16px
    }
}

@media (min-width: 992px) {
    .history-filter-light__body {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 0;
        height: 100%
    }
}

.history-filter-light__header {
    width: 100%;
    padding: 8px 0 40px
}

@media (min-width: 834px) {
    .history-filter-light__header {
        padding: 0 0 24px
    }
}

.history-filter-light__header span.title {
    color: #1a1a1a
}

.history-filter-light__header span.delete {
    color: #666
}

@media (min-width: 992px) {
    .history-filter-light__buttons {
        margin: 0;
        position: absolute;
        left: 0;
        z-index: 20
    }
}

.history-filter-light__buttons span.delete {
    color: #1a1a1a;
    margin-right: 16px;
    cursor: pointer
}

.history-filter-light__buttons div.lottie-animation {
    width: 100%;
    background-color: #4ef09d;
    border-radius: 8px;
    margin-top: 100px;
    height: 48px
}

.history-filter-light__buttons div.lottie-animation .svg {
    width: 30%
}

@media (min-width: 834px) {
    .history-filter-light__buttons div.lottie-animation {
        margin-bottom: 16px;
        margin-top: 120px
    }
}

@media (min-width: 992px) {
    .history-filter-light__buttons div.lottie-animation {
        margin: 0;
        width: 100px
    }
}

.history-report-light {
    width: 100vw;
    height: 100vh;
    background-color: #1a1a1ab2;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    padding: 16px
}

.history-report-light .button1 {
    margin-top: 100px
}

@media (min-width: 834px) {
    .history-report-light .button1 {
        margin-bottom: 16px;
        margin-top: 120px
    }
}

.history-report-light .dropdown1,
.history-report-light .calender {
    margin-bottom: 8px
}

.history-report-light .dropdown1__value {
    direction: rtl !important
}

@media (min-width: 834px) {
    .history-report-light {
        padding: 0 30%
    }
}

@media (min-width: 992px) {
    .history-report-light {
        padding: 0 35%
    }
}

.history-report-light__body {
    width: 100%;
    padding: 16px;
    background-color: #f2f2f2;
    border-radius: 16px
}

.history-report-light__header {
    width: 100%;
    padding: 0 0 16px
}

@media (min-width: 834px) {
    .history-report-light__header {
        padding: 0 0 24px
    }
}

.history-report-light__header img {
    cursor: pointer
}

.history-report-light__header span.delete {
    color: #666;
    cursor: pointer
}

.history-lazy-light {
    width: 100%
}

.history-lazy-light__mobile-item {
    width: 100%;
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 8px
}

.history-lazy-light__desktop-item {
    width: 100%;
    border-bottom: 1px solid #d8d8d8;
    height: 60px;
    padding: 18px 20px
}

.history-lazy-light__desktop-item .lazy-1-light {
    background-color: #f2f2f2
}

.history-lazy-light__row1 {
    width: 100%;
    height: 64px;
    padding: 12px 8px
}

.history-lazy-light__row2 {
    width: 100%;
    height: 44px;
    border-top: 1px solid #d8d8d8
}

.history-lazy-light__row2 div.section {
    padding: 12px 8px;
    width: 50%;
    height: 100%
}

.history-lazy-light__row2 div.section.border {
    border-left: 1px solid #d8d8d8
}

.history-lazy-light__row3 {
    width: 100%;
    height: 41px;
    border-top: 1px solid #d8d8d8;
    padding: 12px 8px
}

.bitpinland {
    width: 100vw
}

.bitpinland__body {
    width: 100%;
    padding: 16px 16px 40px
}

@media (min-width: 834px) {
    .bitpinland__body {
        padding: 48px 8%
    }
}

@media (min-width: 992px) {
    .bitpinland__body {
        padding: 56px 10% 100px
    }
}

.bitpinland__body .tab1__header,
.bitpinland__body .tab1-light__header {
    width: 100% !important;
    justify-content: flex-start;
    padding: 0
}

.bitpinland__body .tab1__header div,
.bitpinland__body .tab1-light__header div {
    margin-left: 32px
}

.bitpinland__top {
    width: 100%;
    color: var(--body_text_primary)
}

.bitpinland__top h5 {
    font-size: 20px
}

@media (min-width: 992px) {
    .bitpinland__top h5 {
        font-size: 24px
    }
}

.bitpinland__top__box {
    width: 100%
}

.bitpinland__top__box img {
    width: 80%;
    margin-top: 16px;
    margin-bottom: 40px
}

.bitpinland__top__box div {
    margin-top: 20px;
    text-align: right;
    direction: rtl;
    color: var(--body_text_primary);
    margin-left: 20px
}

.bitpinland__top__box div span {
    color: var(--body_text_primary) !important
}

@media (min-width: 834px) {
    .bitpinland__top {
        margin-bottom: 112px
    }

    .bitpinland__top__box {
        flex-direction: row-reverse !important;
        justify-content: center
    }

    .bitpinland__top__box img {
        width: 30%
    }

    .bitpinland__top__box div {
        flex-direction: column;
        width: 70%
    }
}

@media (min-width: 992px) {
    .bitpinland__top__box img {
        width: 34%
    }

    .bitpinland__top__box div {
        width: 70%;
        font-size: 14px
    }
}

.bitpinland__top__header {
    text-align: justify;
    margin-bottom: 32px
}

@media (min-width: 992px) {
    .bitpinland__top__header {
        font-size: 32px
    }
}

.bitpinland__desc {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--body_text_primary)
}

.bitpinland__desc div {
    margin-top: 20px;
    text-align: right;
    direction: rtl;
    margin-left: 20px
}

.bitpinland__desc div span {
    color: var(--body_text_primary) !important
}

.bitpinland__tab {
    width: 100%;
    margin-top: 25px
}

.bitpinland__invite {
    width: 100%;
    color: var(--body_text_primary);
    margin-top: 64px
}

.bitpinland__invite img {
    margin-bottom: 40px
}

.bitpinland__invite p {
    margin-bottom: 20px
}

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

@media (min-width: 834px) {
    .bitpinland__invite {
        margin-top: 104px;
        flex-direction: row-reverse !important;
        justify-content: space-between !important
    }

    .bitpinland__invite div {
        width: 47%;
        align-items: center;
        display: flex;
        flex-direction: column
    }

    .bitpinland__invite img {
        width: 28%
    }

    .bitpinland__invite .button2 {
        width: 50%
    }
}

@media (min-width: 992px) {
    .bitpinland__invite {
        margin-top: 116px;
        flex-direction: row-reverse !important;
        justify-content: space-between !important
    }

    .bitpinland__invite div {
        width: 40%;
        align-items: center;
        display: flex;
        flex-direction: column
    }

    .bitpinland__invite img {
        width: 24%
    }

    .bitpinland__invite .button2 {
        width: 40%
    }
}

.bitpinland__reward-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px
}

@media (min-width: 834px) {
    .bitpinland__reward-list {
        flex-direction: row-reverse;
        flex-wrap: wrap;
        padding: 0 10%;
        margin-top: 0;
        justify-content: space-between
    }
}

.bitpinland__reward-item {
    width: 100%;
    padding: 15px;
    background-color: var(--surface_octonary);
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
    margin-bottom: 20px
}

@media (min-width: 834px) {
    .bitpinland__reward-item {
        width: calc((100% - 30px)/2);
        margin-bottom: 30px
    }
}

@media (min-width: 992px) {
    .bitpinland__reward-item {
        width: calc((100% - 60px) / 3);
        margin-bottom: 25px
    }
}

.bitpinland__reward-item div.pattern {
    position: absolute;
    top: 0;
    width: 100%
}

.bitpinland__reward-item div.pattern img {
    width: 100%
}

.bitpinland__reward-item div.image {
    max-width: 100px;
    max-height: 100px
}

.bitpinland__reward-item div.image img {
    width: 100%;
    height: 100%
}

.bitpinland__reward-item div.image div {
    width: 100px;
    height: 100px
}

.bitpinland__reward-item div.title {
    margin-top: 10px;
    color: var(--body_text_octonary);
    direction: rtl
}

@media (min-width: 834px) {
    .bitpinland__reward-item div.title {
        font-size: 14px
    }
}

@media (min-width: 992px) {
    .bitpinland__reward-item div.title {
        font-size: 16px
    }
}

.bitpinland__reward-item div.gift-title {
    margin-top: 40px;
    color: var(--body_text_nonary);
    direction: rtl
}

@media (min-width: 834px) {
    .bitpinland__reward-item div.gift-title {
        font-size: 16px;
        margin-top: 25px
    }
}

@media (min-width: 992px) {
    .bitpinland__reward-item div.gift-title {
        font-size: 20px;
        margin-top: 40px
    }
}

.bitpinland__bitpinland-empty {
    width: 100%;
    color: var(--body_text_primary);
    margin-top: 100px;
    text-align: center;
    direction: rtl;
    flex-direction: column;
    align-items: center;
    display: flex;
    justify-content: center
}

.bitpinland__bitpinland-empty img {
    margin-bottom: 32px;
    width: 80px
}

.bitpinland__bitpinland-empty span {
    margin-bottom: 8px
}

.bitpinland__bitpinland-cat {
    width: 100%;
    margin: 20px 0 15px;
    background-color: var(--surface_binary);
    border-radius: 20px;
    padding: 20px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center
}

@media (min-width: 834px) {
    .bitpinland__bitpinland-cat {
        width: 100%
    }
}

.bitpinland__bitpinland-cat div.cat {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-right: 15px;
    color: #ff5a5a
}

@media (min-width: 992px) {
    .bitpinland__bitpinland-cat div.cat {
        font-size: 20px
    }
}

.bitpinland__bitpinland-it {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid var(--surface_senary);
    padding: 20px 15px
}

.bitpinland__bitpinland-it div.image {
    width: 100%;
    border-radius: 20px;
    background-color: var(surface_decenary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0
}

@media (min-width: 834px) {
    .bitpinland__bitpinland-it div.image {
        width: 155px;
        padding: 30px 0;
        height: 100%
    }
}

@media (min-width: 992px) {
    .bitpinland__bitpinland-it div.image {
        width: 225px;
        height: 195px;
        padding: 0
    }
}

.bitpinland__bitpinland-it div.image img {
    max-width: 100px;
    max-height: 100px
}

.bitpinland__bitpinland-it div.inside {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center
}

@media (min-width: 834px) {
    .bitpinland__bitpinland-it div.inside {
        width: calc(100% - 170px);
        min-height: 195px
    }
}

@media (min-width: 992px) {
    .bitpinland__bitpinland-it div.inside {
        width: calc(100% - 250px)
    }
}

.bitpinland__bitpinland-it div.title-row {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 25px
}

@media (min-width: 834px) {
    .bitpinland__bitpinland-it div.title-row {
        margin-top: 0;
        align-items: center
    }
}

.bitpinland__bitpinland-it div.title-row div.right {
    width: calc(100% - 130px)
}

@media (min-width: 834px) {
    .bitpinland__bitpinland-it div.title-row div.right {
        width: unset
    }
}

.bitpinland__bitpinland-it div.title-row div.title {
    color: var(--body_text_octonary);
    margin-top: 5px;
    text-align: right;
    direction: rtl
}

@media (min-width: 834px) {
    .bitpinland__bitpinland-it div.title-row div.title {
        margin-top: 10px
    }
}

@media (min-width: 992px) {
    .bitpinland__bitpinland-it div.title-row div.title {
        font-size: 16px
    }
}

.bitpinland__bitpinland-it div.title-row div.title.expired {
    color: var(-body_text_secondary)
}

.bitpinland__bitpinland-it div.title-row div.gift-title {
    color: var(--body_text_primary);
    text-align: right;
    direction: rtl
}

@media (min-width: 992px) {
    .bitpinland__bitpinland-it div.title-row div.gift-title {
        font-size: 20px
    }
}

.bitpinland__bitpinland-it div.title-row div.gift-title.expired {
    color: var(--body_text_secondary)
}

.bitpinland__bitpinland-it div .button1 {
    width: 98px
}

.bitpinland__bitpinland-it div.chance {
    width: 100%;
    margin-top: 16px
}

@media (min-width: 992px) {
    .bitpinland__bitpinland-it div.chance {
        width: unset;
        flex: 1;
        justify-content: flex-end;
        margin: 0 0 0 24px
    }
}

.bitpinland__bitpinland-it div.chance span {
    background: linear-gradient(180deg, #4ef09d, #ffffffb3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.bitpinland__bitpinland-it div.chance span.number {
    font-size: 20px
}

.bitpinland__bitpinland-it div.progress {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 25px
}

@media (min-width: 834px) {
    .bitpinland__bitpinland-it div.progress {
        margin-top: 0;
        width: 30%
    }
}

.bitpinland__bitpinland-it div.progress div.progress-title {
    color: var(--body_text_primary);
    text-align: center;
    width: 100%;
    direction: rtl
}

@media (min-width: 992px) {
    .bitpinland__bitpinland-it div.progress div.progress-title {
        font-size: 12px
    }
}

.bitpinland__bitpinland-it div.progress div.progress-line {
    width: 100%;
    height: 10px;
    border-radius: 20px;
    background-color: var(--surface_senary);
    margin: 10px 0
}

.bitpinland__bitpinland-it div.progress div.progress-line2 {
    background-color: var(--progress);
    height: 10px;
    border-radius: 20px;
    position: absolute;
    right: 0
}

.bitpinland__bitpinland-it div.progress div.progress-percent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    color: #fff;
    width: 100%
}

@media (min-width: 992px) {
    .bitpinland__bitpinland-it div.progress div.progress-percent {
        font-size: 12px
    }
}

.bitpinland__bitpinland-it div.desc {
    width: 100%;
    color: var(--body_text_primary);
    direction: rtl;
    text-align: right;
    margin-top: 20px;
    z-index: 2
}

@media (min-width: 834px) {
    .bitpinland__bitpinland-it div.desc {
        margin-top: 15px
    }
}

@media (min-width: 992px) {
    .bitpinland__bitpinland-it div.desc {
        font-size: 14px
    }
}

.bitpinland__bitpinland-it div.desc.expired {
    color: var(--body_text_secondary)
}

.bitpinland__bitpinland-it div.time {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: flex-start;
    margin-top: 10px;
    z-index: 1
}

@media (min-width: 834px) {
    .bitpinland__bitpinland-it div.time {
        margin-top: 15px;
        position: absolute;
        bottom: 0
    }
}

@media (min-width: 992px) {
    .bitpinland__bitpinland-it div.time {
        margin-top: 10px
    }
}

@media (min-width: 992px) {
    .bitpinland__bitpinland-it div.time div.time-text {
        font-size: 16px
    }
}

.bitpinland__bitpinland-it div.time div.time-text.active {
    background: -webkit-linear-gradient(-90deg, var(--text-active) -9.09%, var(--text-active-secondry) 109.09%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.bitpinland__bitpinland-it div.time div.time-text.soon {
    background: -webkit-linear-gradient(-90deg, var(--text-soon) -9.09%, var(--text-soon-secondry) 109.09%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.bitpinland__bitpinland-it div.time div.time-text.expired {
    color: var(--body_text_secondary)
}

.bitpinland__bitpinland-it div.time div.remain-time {
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse
}

@media (min-width: 834px) {
    .bitpinland__bitpinland-it div.time div.remain-time {
        margin-left: 15px
    }
}

@media (min-width: 992px) {
    .bitpinland__bitpinland-it div.time div.remain-time {
        margin-left: 25px
    }
}

.bitpinland__bitpinland-it div.time div.remain-time span {
    color: var(--body_text_primary)
}

.bitpinland__bitpinland-it div.time div.remain-time span.colon {
    margin: 0 5px
}

@media (min-width: 834px) {
    .bitpinland__bitpinland-it {
        padding: 30px 20px 20px;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start
    }

    .bitpinland__bitpinland-it div .button1 {
        width: 98px
    }
}

@media (min-width: 992px) {
    .bitpinland__bitpinland-it div .button1 {
        width: 144px
    }
}

.bitpinland__reward-empty {
    width: 100%;
    flex-direction: column;
    align-items: center;
    display: flex;
    justify-content: center;
    direction: rtl;
    color: var(--body_text_primary);
    margin: 30px 0
}

.bitpinland__reward-empty img {
    margin-bottom: 32px
}

@media (min-width: 834px) {
    .bitpinland__reward-empty img {
        width: 100px
    }
}

.bitpinland__reward-empty span.text {
    margin-bottom: 8px
}

.address-book-list {
    width: 100vw;
    height: 100vh;
    overflow-y: auto
}

.address-book-list__header {
    width: 40%;
    margin: 24px 30% 12px;
    color: var(--body_text_primary)
}

.address-book-list__header img {
    cursor: pointer
}

@media (min-width: 992px) {
    .address-book-list__header {
        width: 30%;
        margin: 16px 35%;
        font-size: 20px
    }
}

.address-book-list__empty {
    padding: 50px 0;
    width: 100%
}

.address-book-list__empty img {
    width: 80px
}

@media (min-width: 992px) {
    .address-book-list__empty img {
        width: 100px
    }
}

.address-book-list__body {
    padding: 16px;
    width: 100%;
    height: 100%
}

@media (min-width: 834px) {
    .address-book-list__body {
        background-color: var(--surface_primary);
        border-radius: 16px;
        width: 40%;
        margin: 0 30%;
        height: unset
    }
}

@media (min-width: 992px) {
    .address-book-list__body {
        width: 30%;
        margin: 16px 35%;
        padding: 16px 30px
    }

    .address-book-list__body .button1 {
        margin-top: 100px
    }
}

.create-address-book {
    width: 100vw
}

.create-address-book__header {
    width: 40%;
    margin: 24px 30% 12px;
    color: var(--body_text_primary)
}

.create-address-book__header img {
    cursor: pointer
}

@media (min-width: 992px) {
    .create-address-book__header {
        width: 30%;
        margin: 16px 35%;
        font-size: 20px
    }
}

.create-address-book__body {
    padding: 16px;
    width: 100%;
    height: 100%
}

@media (min-width: 834px) {
    .create-address-book__body {
        background-color: var(--surface_primary);
        border-radius: 16px;
        width: 40%;
        margin: 0 30%;
        height: unset
    }
}

@media (min-width: 992px) {
    .create-address-book__body {
        width: 30%;
        margin: 16px 35%;
        padding: 16px 30px
    }
}

.create-address-book__input-title {
    color: var(--body_text_primary);
    width: 100%;
    text-align: right;
    margin: 8px 0
}

@media (min-width: 992px) {
    .create-address-book__input-title {
        font-size: 14px
    }
}

.choose-address {
    width: 100vw;
    height: 100vh;
    background-color: var(--popup-bg-color);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100
}

@media (min-width: 834px) {
    .choose-address {
        padding: 0 30%
    }
}

@media (min-width: 992px) {
    .choose-address {
        padding: 0 35%
    }
}

.choose-address__body {
    width: 100%;
    background-color: var(--surface_nonary);
    border-radius: 16px 16px 0 0;
    padding: 16px 16px 120px;
    max-height: 80%
}

@media (min-width: 834px) {
    .choose-address__body {
        padding-bottom: 24px
    }
}

.choose-address__body div.close {
    width: 100%
}

.choose-address__body div.close img {
    cursor: pointer
}

.choose-address__body img.image {
    margin-bottom: 24px
}

.choose-address__title {
    color: var(--body_text_primary);
    width: 100%;
    text-align: center;
    margin-bottom: 12px
}

@media (min-width: 992px) {
    .choose-address__title {
        font-size: 16px;
        margin-bottom: 16px
    }
}

.choose-address__image {
    margin: 50px 0
}

.choose-address__image img {
    width: 80px
}

@media (min-width: 834px) {
    .choose-address__image {
        margin-bottom: 0;
        width: 100%
    }

    .choose-address__image img {
        width: 20%
    }
}

.choose-address__list {
    width: 100%;
    justify-content: flex-start !important;
    overflow-y: scroll
}

.choose-address__btns {
    width: 100%
}

@media (min-width: 834px) {
    .choose-address__btns {
        margin-top: 100px
    }
}

.choose-address__btns .button1 {
    width: unset;
    flex: 1
}

.choose-address__btns .button2 {
    width: calc((100% - 16px)/2);
    margin-right: 16px
}

.address-card {
    width: 100%;
    background-color: var(--surface_secondary);
    border-radius: 8px;
    padding: 8px 12px;
    margin-bottom: 8px;
    cursor: pointer
}

.address-card.selected {
    border: 1px solid var(--body_text_accent)
}

.address-card div.right {
    align-items: flex-start !important;
    width: calc(100% - 24px)
}

.address-card div.text {
    width: calc(100% - 32px)
}

.address-card div.title {
    color: var(--body_text_primary)
}

.address-card div.val {
    color: var(--body_text_secondary);
    width: 100%;
    word-wrap: break-word;
    white-space: pre-line;
    display: inline-block
}

.address-card div.logo {
    margin-left: 8px
}

.address-card div.logo img {
    width: 24px
}

.commission-page {
    width: 100vw
}

.commission-page__body {
    width: 100%
}

.commission-page-light {
    width: 100vw;
    background-color: #e9e9e9
}

.commission-page-light__body {
    width: 100%
}

.support-page {
    width: 100vw
}

.support-page__body {
    padding: 16px 16px 40px
}

@media (min-width: 834px) {
    .support-page__body {
        padding: 26px 8%
    }
}

@media (min-width: 992px) {
    .support-page__body {
        padding: 56px 10% 100px
    }
}

.support-page__top {
    margin-bottom: 32px;
    color: var(--body_text_primary)
}

.support-page__top img {
    width: 60%;
    margin-bottom: 40px
}

@media (min-width: 834px) {
    .support-page__top {
        align-items: center;
        flex-direction: row-reverse !important;
        justify-content: space-between !important;
        margin-bottom: 48px
    }

    .support-page__top img,
    .support-page__top div {
        width: 44%
    }

    .support-page__top p {
        font-size: 14px
    }
}

@media (min-width: 992px) {
    .support-page__top img {
        width: 34%;
        margin-bottom: 40px
    }

    .support-page__top div {
        align-items: center;
        width: 34%;
        flex-direction: column;
        display: flex
    }

    .support-page__top p {
        font-size: 16px
    }
}

.support-page__top__header {
    text-align: right;
    margin-bottom: 32px
}

@media (min-width: 992px) {
    .support-page__top__header {
        font-size: 32px
    }
}

@media (min-width: 834px) {
    .support-page__top__header {
        font-size: 32px;
        margin-bottom: 40px;
        width: 100%
    }
}

.support-page__text {
    color: var(--body_text_primary);
    margin-bottom: 24px
}

@media (min-width: 834px) {
    .support-page__text {
        font-size: 16px
    }
}

@media (min-width: 992px) {
    .support-page__text {
        font-size: 20px;
        margin-bottom: 56px
    }
}

@media (min-width: 834px) {
    .support-page__cards {
        flex-wrap: wrap;
        display: flex
    }

    .support-page__cards .element4,
    .support-page__cards .element4-light {
        margin-left: 32px
    }

    .support-page__cards .element4:nth-child(2n) {
        margin-left: 0
    }
}

.support-page__cards .element4,
.support-page__cards .element4-light {
    margin-bottom: 16px;
    cursor: pointer
}

@media (min-width: 992px) {
    .support-page__cards {
        justify-content: space-between
    }

    .support-page__cards .element4,
    .support-page__cards .element4-light {
        margin-left: 0;
        height: 290px !important
    }

    .support-page__cards .element4 img.image,
    .support-page__cards .element4-light img.image {
        width: 64px
    }
}

.trade-markets-table {
    --header-height: 44px;
    --text-color-primary: #fff;
    --text-color-secondary: #d8d8d8;
    --active-color: #4ef09d;
    --row-hover-bg: rgba(78, 240, 157, .1);
    position: relative;
    overflow: auto;
    margin: 0;
    padding: 0;
    width: 100%;
    color: var(--text-color-primary)
}

.trade-markets-table.light {
    --text-color-primary: #1a1a1a;
    --text-color-secondary: #666;
    --active-color: #02a67f;
    --row-hover-bg: rgba(2, 166, 127, .1)
}

.trade-markets-table.is-loading {
    pointer-events: none
}

.trade-markets-table__header {
    width: 100%;
    height: var(--header-height);
    position: sticky;
    top: 0;
    z-index: 30;
    padding: 0 16px;
    background-color: var(--background-color);
    border-bottom: 1px solid var(--border_line_tertiary);
    cursor: pointer
}

.trade-markets-table__header .header-item {
    text-align: right;
    color: var(--text-color-primary);
    font-weight: 400;
    white-space: nowrap
}

.trade-markets-table__header .header-item__icon {
    display: inline-flex;
    height: 20px;
    margin-right: 4px;
    cursor: pointer;
    color: #b2b2b2
}

.trade-markets-table__header .header-item__icon :last-child {
    margin-top: -4px
}

.trade-markets-table__header .header-item__icon .active {
    color: var(--active-color)
}

.trade-markets-table .title_fa-col {
    width: 50%;
    padding-left: 4px
}

.trade-markets-table .price-col {
    width: 30%;
    padding-left: 4px
}

.trade-markets-table .change-col {
    text-align: left;
    width: 20%
}

.trade-markets-table__body .row {
    padding: 8px 12px 8px 16px
}

.trade-markets-table__body .row:not(:first-of-type) {
    border-top: 1px solid var(--border_line_tertiary)
}

.trade-markets-table__body .title_fa-col * {
    line-height: 1.25
}

.trade-markets-table__body .title_fa-col .bookmark-icon,
.trade-markets-table__body .title_fa-col .currency-icon {
    margin-left: 4px;
    width: 20px
}

.trade-markets-table__body .title_fa-col .risk-label {
    color: #e7c400;
    margin-right: 8px
}

.trade-markets-table__body .title_fa-col .code {
    color: var(--text-color-secondary);
    line-height: 1;
    vertical-align: text-bottom
}

.trade-markets-table__body .change-col .element1,
.trade-markets-table__body .change-col .element1-light {
    width: auto
}

.trade-markets-table__body.empty {
    height: calc(100% - var(--header-height))
}

.trade-markets-table .price-change-label {
    height: 25px;
    direction: ltr;
    text-align: center;
    border-radius: 8px;
    unicode-bidi: embed;
    font-weight: 500;
    --positive-color: #4ef09d;
    --negative-color: #ff5a5a
}

.trade-markets-table .price-change-label.positive {
    color: var(--positive-color)
}

.trade-markets-table .price-change-label.negative {
    color: var(--negative-color)
}

@media (min-width: 834px) {
    .trade-markets-table__header {
        padding: 0 8px
    }

    .trade-markets-table__header .header-item {
        padding-bottom: 0
    }

    .trade-markets-table__body .row {
        padding: 4px 6px 4px 8px;
        border: none !important;
        cursor: pointer
    }

    .trade-markets-table .price-change-label {
        font-size: 14px
    }

    .trade-markets-table.light .price-change-label {
        --positive-color: #02a67f;
        --negative-color: #ff5a5a
    }
}

@media (min-width: 992px) {
    .trade-markets-table__header {
        margin-top: 0
    }

    .trade-markets-table__header .header-item__label {
        font-size: 14px
    }

    .trade-markets-table svg {
        cursor: pointer
    }

    .trade-markets-table__body {
        padding-top: 8px
    }

    .trade-markets-table__body .row:hover {
        background-color: var(--row-hover-bg)
    }

    .trade-markets-table__body .title_fa-col .title {
        white-space: nowrap
    }

    .trade-markets-table__body .title_fa-col .bookmark-icon,
    .trade-markets-table__body .title_fa-col .currency-icon {
        margin-left: 8px
    }

    .trade-markets-table__body .title_fa-col .risk-label {
        margin-right: 4px
    }

    .trade-markets-table__body .change-col .element1,
    .trade-markets-table__body .change-col .element1-light {
        display: inline-block
    }
}

.trade-markets-table .empty-state {
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center
}

.trade-markets-table .empty-state img {
    width: 80px
}

.trade-markets {
    width: 100vw;
    height: calc(100vh - 56px);
    --background-color: rgba(58, 58, 58, .8196078431);
    background-color: var(--background-color);
    position: fixed;
    top: 56px;
    left: 0;
    z-index: 100;
    opacity: 0;
    transition-duration: .1s
}

.trade-markets.show {
    opacity: 1;
    transition-duration: .1s
}

@media (min-width: 834px) {
    .trade-markets {
        opacity: 1;
        background-color: transparent;
        top: 0;
        height: 100vh;
        padding-top: 173px;
        padding-right: 10px
    }
}

@media (min-width: 992px) {
    .trade-markets {
        padding-top: 164px;
        left: unset;
        right: 25%;
        z-index: 90
    }

    .trade-markets.classic {
        position: relative;
        width: 100%;
        height: 304px;
        padding: 0;
        z-index: unset;
        right: unset
    }
}

.trade-markets .switch3 {
    margin-bottom: 0
}

.trade-markets .switch3 div {
    margin: 0 16px
}

@media (min-width: 834px) {
    .trade-markets .switch3 {
        margin-bottom: 0
    }
}

.trade-markets .sort-header {
    margin-bottom: 8px
}

@media (min-width: 834px) {
    .trade-markets .sort-header {
        height: 45px
    }

    .trade-markets .sort-header div.title_fa {
        width: 50% !important
    }

    .trade-markets .sort-header div.price {
        width: 30% !important
    }

    .trade-markets .sort-header div.change {
        width: 20% !important
    }

    .trade-markets .sort-header div.chart,
    .trade-markets .sort-header div.trade {
        display: none !important
    }
}

@media (min-width: 834px) {
    .trade-markets .sort-header {
        margin-top: 0;
        padding-bottom: 0
    }
}

.trade-markets .input4 {
    width: calc(100% - 32px);
    margin: 0 16px 16px
}

@media (min-width: 834px) {
    .trade-markets .input4 {
        background: #66666619;
        width: calc(100% - 18px);
        margin: 0 8px 8px
    }
}

.trade-markets__body {
    width: 88%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #1a1a1a;
    --background-color: #1a1a1a;
    padding: 16px 0 0;
    border-radius: 16px 0 0;
    position: absolute;
    right: -88vw;
    transition-duration: .1s
}

.trade-markets__body.show {
    right: 0;
    transition-duration: .1s
}

@media (min-width: 834px) {
    .trade-markets__body {
        position: relative;
        right: unset;
        width: 45%;
        height: 330px;
        border-radius: 0 0 8px 8px
    }
}

@media (min-width: 992px) {
    .trade-markets__body {
        background-color: #333;
        --background-color: #333;
        width: 25%;
        height: 480px;
        padding: 10px 0 0
    }

    .trade-markets__body.classic {
        width: 100%;
        height: 100%;
        background-color: #222;
        --background-color: #222;
        border-radius: 8px
    }

    .trade-markets__body.classic .input4 {
        background-color: #333
    }
}

.trade-markets__list {
    width: 100%;
    overflow-y: scroll;
    height: calc(100% - 152px);
    padding-bottom: 120px
}

@media (min-width: 834px) {
    .trade-markets__list {
        padding-bottom: 0
    }
}

.trade-markets__list.empty {
    display: flex;
    align-items: center;
    justify-content: center
}

.trade-markets__list.empty img {
    width: 80px
}

.trade-markets__list__item {
    width: 100%;
    border-top: 1px solid #333;
    padding: 8px 8px 8px 16px;
    text-decoration: unset
}

@media (min-width: 834px) {
    .trade-markets__list__item {
        border: unset;
        cursor: pointer;
        padding: 4px 8px 4px 16px
    }
}

.trade-markets__list__item.classic {
    padding: 4px 8px 0 16px
}

.trade-markets__list__item div.info {
    align-items: flex-start;
    width: 60%
}

@media (min-width: 834px) {
    .trade-markets__list__item div.info {
        width: 50%
    }
}

.trade-markets__list__item div.info img {
    width: 20px;
    margin-left: 4px
}

@media (min-width: 834px) {
    .trade-markets__list__item div.info img {
        margin-left: 8px
    }
}

.trade-markets__list__item div.info div {
    align-items: flex-start
}

.trade-markets__list__item div.info span.risk {
    color: #e7c400;
    margin-right: 8px
}

@media (min-width: 834px) {
    .trade-markets__list__item div.info span.risk {
        margin-top: 0;
        line-height: unset;
        margin-right: 4px
    }
}

.trade-markets__list__item div.info span.code {
    color: #d8d8d8;
    line-height: 10px
}

.trade-markets__list__item div.info span.title_fa {
    color: #fff;
    line-height: 10px
}

@media (min-width: 992px) {
    .trade-markets__list__item div.info span.title_fa {
        margin-top: -2px;
        line-height: unset
    }
}

.trade-markets__list__item div.price {
    color: #fff;
    text-align: right;
    width: calc(60% - 80px)
}

@media (min-width: 834px) {
    .trade-markets__list__item div.price {
        width: 30%
    }
}

.trade-markets__list__item div.change {
    width: 80px
}

@media (min-width: 834px) {
    .trade-markets__list__item div.change {
        width: 20%;
        display: flex;
        justify-content: flex-start
    }
}

.trade-markets-light {
    width: 100vw;
    height: calc(100vh - 56px);
    --background-color: rgba(26, 26, 26, .6980392157);
    background-color: var(--background-color);
    position: fixed;
    top: 56px;
    left: 0;
    z-index: 100;
    opacity: 0;
    transition-duration: .1s
}

.trade-markets-light.show {
    opacity: 1;
    transition-duration: .1s
}

@media (min-width: 834px) {
    .trade-markets-light {
        opacity: 1;
        background-color: transparent;
        top: 0;
        height: 100vh;
        padding-top: 173px;
        padding-right: 10px
    }
}

@media (min-width: 992px) {
    .trade-markets-light {
        padding-top: 164px;
        left: unset;
        right: 25%;
        z-index: 90
    }

    .trade-markets-light.classic {
        position: relative;
        width: 100%;
        height: 304px;
        padding: 0;
        z-index: unset;
        right: unset
    }
}

.trade-markets-light .switch3 {
    margin-bottom: 0
}

.trade-markets-light .switch3 div {
    margin: 0 16px
}

@media (min-width: 834px) {
    .trade-markets-light .switch3 {
        margin-bottom: 0
    }
}

.trade-markets-light .sort-header-light {
    margin-bottom: 8px
}

@media (min-width: 834px) {
    .trade-markets-light .sort-header-light {
        height: 45px
    }

    .trade-markets-light .sort-header-light div.title_fa {
        width: 50% !important
    }

    .trade-markets-light .sort-header-light div.price {
        width: 30% !important
    }

    .trade-markets-light .sort-header-light div.change {
        width: 20% !important
    }

    .trade-markets-light .sort-header-light div.chart,
    .trade-markets-light .sort-header-light div.trade {
        display: none !important
    }
}

@media (min-width: 834px) {
    .trade-markets-light .sort-header-light {
        margin-top: 0;
        padding-bottom: 0
    }
}

.trade-markets-light .input4 {
    width: calc(100% - 32px);
    margin: 0 16px 16px
}

@media (min-width: 834px) {
    .trade-markets-light .input4 {
        width: calc(100% - 18px);
        margin: 0 8px 8px
    }
}

.trade-markets-light__body {
    width: 88%;
    height: 100%;
    display: flex;
    flex-direction: column;
    --background-color: #f2f2f2;
    background-color: var(--background-color);
    padding: 16px 0 0;
    border-radius: 16px 0 0;
    position: absolute;
    right: -88vw;
    transition-duration: .1s
}

.trade-markets-light__body.show {
    right: 0;
    transition-duration: .1s
}

@media (min-width: 834px) {
    .trade-markets-light__body {
        position: relative;
        right: unset;
        width: 45%;
        height: 330px;
        border-radius: 0 0 8px 8px
    }
}

@media (min-width: 992px) {
    .trade-markets-light__body {
        --background-color: #e1e1e1;
        background-color: var(--background-color);
        width: 25%;
        height: 480px;
        padding: 10px 0 0
    }

    .trade-markets-light__body.classic {
        width: 100%;
        height: 100%;
        --background-color: #f2f2f2;
        background-color: var(--background-color);
        border-radius: 8px
    }
}

.trade-markets-table {
    flex: 1
}

.trade {
    width: 100vw;
    padding-bottom: 170px
}

.trade ::-webkit-scrollbar {
    display: none
}

.trade__body {
    width: 100%
}

.trade__tab {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border-bottom: 1px solid #666
}

.trade__tab div.wrapper {
    height: 100%;
    align-items: flex-end !important
}

.trade__tab div.wrapper div.tab {
    color: #b2b2b2;
    padding-bottom: 8px;
    margin-left: 32px;
    border-bottom: 2px solid transparent;
    cursor: pointer
}

.trade__tab div.wrapper div.tab img {
    margin-bottom: 4px;
    margin-right: 4px
}

.trade__tab div.wrapper div.tab.selected {
    border-bottom: 2px solid #4ef09d;
    color: #fff
}

.trade__tab div.list {
    background-color: #1a1a1a;
    border: 1px solid #666;
    border-radius: 0 0 8px 8px;
    color: #fff;
    padding: 16px 12px 0;
    position: absolute;
    top: 36px;
    min-width: 100px;
    display: none !important
}

.trade__tab div.list.show {
    display: flex !important;
    z-index: 501
}

.trade__tab div.list div {
    margin-bottom: 12px;
    cursor: pointer
}

.trade__panel {
    width: 100%;
    height: 100%
}

.trade__panel .switch1 {
    width: 100%;
    height: 48px;
    margin-top: 0;
    border: unset;
    background-color: #333;
    margin-bottom: 12px
}

@media (min-width: 834px) {
    .trade__panel .switch1 {
        width: calc(100% - 32px);
        font-size: 14px;
        margin-top: 0
    }
}

.trade__panel .switch1 div.right,
.trade__panel .switch1 div.left {
    border-radius: 8px;
    border: unset
}

@media (min-width: 834px) {
    .trade__panel .switch3 {
        margin-bottom: 0 !important
    }
}

.trade__panel .switch3 div {
    margin: 16px 16px 0
}

@media (min-width: 834px) {
    .trade__panel .switch3 div {
        margin: 12px 12px 0;
        padding-bottom: 0
    }
}

@media (min-width: 992px) {
    .trade__panel .switch3 div {
        padding-bottom: 8px
    }
}

.trade__orders {
    width: calc((100% - 16px)/2)
}

@media (min-width: 834px) {
    .trade__orders {
        width: 100%
    }
}

.trade__orders.type-4 {
    width: 100%
}

@media (max-width: 834px) {
    .trade__orders.type-4 {
        padding: 0 8px
    }
}

@media (min-width: 834px) {
    .trade__orders {
        padding: 0 16px
    }
}

.trade__orders__sort-header {
    width: 100%;
    margin-top: 16px
}

.trade__orders__sort-header.mobile {
    position: absolute;
    bottom: 0;
    margin-top: 0;
    justify-content: flex-end
}

.trade__orders__sort-header.fix {
    margin-top: 0;
    width: 144px;
    position: absolute;
    left: 12px;
    top: -32px
}

@media (min-width: 992px) {
    .trade__orders__sort-header.fix {
        top: -40px
    }
}

.trade__orders__sort-header div.title {
    color: #fff
}

.trade__orders__sort-header div.options img {
    cursor: pointer;
    margin-right: 12px
}

.trade__orders__list-header {
    width: 100%;
    color: #fff;
    margin-bottom: 4px
}

.trade__orders__list-header.type-1 {
    margin-bottom: 0
}

@media (min-width: 834px) {
    .trade__orders__list-header {
        margin-top: 16px
    }
}

.trade__orders__wrapper {
    width: 100%
}

.trade__orders__wrapper.type-4 {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start
}

.trade__orders__box {
    background-color: #333;
    border-radius: 8px;
    padding: 8px;
    color: #fff;
    position: absolute;
    width: 190px;
    left: -195px;
    z-index: 99;
    height: 90px;
    bottom: -45px
}

.trade__orders__box div.indicator {
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid #333;
    width: 0px;
    height: 0px;
    position: absolute;
    right: -6px
}

.trade__orders__box div.indicator.type-4.buy {
    border-right: 6px solid #333;
    border-left: unset;
    left: -6px;
    right: unset
}

.trade__orders__box div span.value {
    width: unset
}

.trade__orders__box div span.box-key {
    justify-content: flex-start
}

.trade__orders__box.type-4.buy {
    right: -165px;
    left: unset
}

.trade__orders__box.type-3.sell {
    top: -45px;
    bottom: unset
}

.trade__orders__box div {
    width: 100%
}

.trade__orders__match-price {
    width: 100%;
    color: #4ef09d;
    cursor: pointer
}

.trade__orders__match-price img {
    margin-bottom: 2px
}

.trade__orders__match-price.type-1,
.trade__orders__match-price.type-2,
.trade__orders__match-price.type-3 {
    margin: 8px 0
}

@media (min-width: 834px) {
    .trade__orders__match-price.type-3 {
        margin: 12px 0 10px
    }
}

@media (min-width: 834px) {
    .trade__orders__match-price {
        justify-content: flex-start;
        font-size: 16px
    }
}

.trade__orders__match-price.down {
    color: #ff5a5a
}

.trade__orders__match-price img {
    margin-right: 4px
}

.trade__orders__list {
    width: 100%
}

.trade__orders__list.type-4 {
    width: calc((100% - 12px)/2)
}

.trade__orders__list.reverse {
    display: flex;
    flex-direction: column-reverse
}

.trade__orders__list span {
    width: 100%
}

.trade__orders__list span.shadow {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    background-color: #4ef09d0d
}

.trade__orders__list span.shadow.sell {
    background-color: #ff5a5a0d
}

.trade__orders__list span.shadow.buy.type-4 {
    left: 0;
    right: unset
}

.trade__orders__list span.price {
    color: #4ef09d;
    justify-content: flex-start
}

.trade__orders__list span.price.sell {
    color: #ff5a5a
}

.trade__orders__list span.price.type-4 {
    justify-content: flex-end
}

.trade__orders__list span.price.type-4.sell {
    justify-content: flex-start
}

.trade__orders__list span.remain.type-1 {
    justify-content: flex-end
}

@media (min-width: 834px) {
    .trade__orders__list span.remain.type-1 {
        justify-content: center
    }
}

.trade__orders__list span.remain.type-2 {
    justify-content: flex-end
}

@media (min-width: 834px) {
    .trade__orders__list span.remain.type-2 {
        justify-content: center
    }
}

.trade__orders__list span.remain.type-3 {
    justify-content: flex-end
}

@media (min-width: 834px) {
    .trade__orders__list span.remain.type-3 {
        justify-content: center
    }
}

.trade__orders__list span.remain.type-4 {
    justify-content: flex-start
}

.trade__orders__list span.remain.type-4.sell,
.trade__orders__list span.value {
    justify-content: flex-end
}

.trade__orders__list span.isuser {
    margin-left: 4px;
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-right: 4px solid #cafbe2
}

@media (min-width: 834px) {
    .trade__orders__list span.isuser {
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
        border-right: 8px solid #cafbe2
    }
}

.trade__orders__list div.row {
    cursor: pointer;
    width: 100%;
    color: #fff
}

@media (min-width: 992px) {
    .trade__orders__list div.row {
        border: .5px dashed transparent
    }
}

.trade__orders__list div.row.hover {
    background-color: #33333380
}

.trade__orders__list div.row.border-top {
    border-top: .5px dashed #666
}

.trade__orders__list div.row.border-bottom {
    border-bottom: .5px dashed #666
}

.trade__orders__list div.row.type-4.buy {
    flex-direction: row-reverse !important
}

.trade__matches {
    width: 100%;
    padding: 0 16px
}

@media (min-width: 992px) {
    .trade__matches.classic {
        background-color: #222;
        border-radius: 8px;
        padding-top: 16px;
        margin-top: 8px
    }
}

.trade__matches div.listtitle {
    color: #fff;
    width: 100%;
    text-align: center;
    margin-top: 8px
}

.trade__matches div.header {
    width: 100%;
    color: #fff
}

@media (min-width: 834px) {
    .trade__matches div.header {
        margin-top: 16px
    }
}

.trade__matches div.header span {
    width: 33%;
    text-align: center
}

@media (min-width: 834px) {
    .trade__matches div.header span.price {
        text-align: right
    }

    .trade__matches div.header span.time {
        text-align: left
    }
}

.trade__matches div.list {
    width: 100%
}

.trade__matches div.list div {
    width: 100%;
    color: #fff
}

.trade__matches div.list span {
    width: 33%;
    text-align: center
}

.trade__matches div.list span.buy {
    color: #4ef09d
}

.trade__matches div.list span.sell {
    color: #ff5a5a
}

@media (min-width: 834px) {
    .trade__matches div.list span.price {
        text-align: right
    }

    .trade__matches div.list span.time {
        text-align: left
    }
}

.trade__card3 {
    width: 100%
}

@media (min-width: 834px) {
    .trade__card3 {
        width: 100%;
        padding: 8px 16px
    }
}

.trade__card3.twin {
    width: 100%;
    padding: 4px
}

.trade__card3 .switch1 {
    width: 100%;
    height: 48px;
    margin-top: 0;
    border: unset;
    background-color: #333;
    margin-bottom: 12px
}

@media (min-width: 834px) {
    .trade__card3 .switch1 {
        font-size: 14px;
        margin-top: 0;
        margin-bottom: 16px
    }
}

.trade__card3 .switch1 div.right,
.trade__card3 .switch1 div.left {
    border-radius: 8px;
    border: unset
}

.trade__card3 .switch1 div.left.selected {
    background: #ff5a5a40
}

.trade__card3__twin,
.trade__card1 {
    width: 100%
}

.trade__card1.twin {
    width: calc((100% - 16px)/2)
}

.trade__card1 .input3 {
    margin-bottom: 12px
}

.trade__card1 div.input-title {
    width: 100%;
    color: #fff;
    margin-bottom: 4px
}

.trade__card1 div.input-title div {
    cursor: pointer
}

@media (min-width: 834px) {
    .trade__card1 div.input-title div {
        font-size: 12px
    }
}

@media (min-width: 992px) {
    .trade__card1 div.input-title div {
        font-size: 14px
    }
}

@media (min-width: 992px) {
    .trade__card1 div.input-title {
        font-size: 14px
    }
}

.trade__card1 div.input-title img {
    width: 16px
}

@media (min-width: 834px) {
    .trade__card1 div.input-title img {
        width: 20px
    }
}

.trade__card1 div.input-title span.balance-amount {
    margin-left: 8px
}

.trade__card1 div.output {
    width: 100%;
    background-color: #222;
    border-radius: 8px;
    padding: 8px 0;
    height: 48px
}

@media (min-width: 834px) {
    .trade__card1 div.output {
        background-color: #333
    }
}

@media (min-width: 992px) {
    .trade__card1 div.output {
        height: 56px
    }
}

.trade__card1 div.output div {
    width: 50%
}

.trade__card1 div.output div.output-fee {
    border-left: 1px dashed #666
}

.trade__card1 div.output div span {
    line-height: 18px
}

.trade__card1 div.output div span.key {
    color: #b2b2b2
}

.trade__card1 div.output div span.val {
    color: #fff
}

@media (min-width: 834px) {
    .trade__card1 div.output div span.val {
        font-size: 12px
    }
}

@media (min-width: 992px) {
    .trade__card1 div.output div span.val {
        margin-top: 8px
    }
}

.trade__user-panel {
    margin: 16px 16px 24px;
    width: calc(100% - 32px);
    background-color: #222;
    border-radius: 8px;
    padding: 8px 0
}

@media (min-width: 834px) {
    .trade__user-panel {
        width: 100%;
        margin: 0;
        padding-bottom: 100px
    }
}

.trade__user-panel .tick-button {
    margin-right: 8px
}

.trade__user-panel .switch3 {
    margin-bottom: 8px
}

.trade__user-panel .switch3 div {
    margin-right: 8px;
    margin-left: 24px
}

.trade__user-panel__empty {
    width: 100%;
    height: 100%;
    padding: 40px 0
}

.trade__user-panel__empty img {
    width: 80px
}

@media (min-width: 834px) {
    .trade__user-panel__empty {
        padding: 60px 0
    }

    .trade__user-panel__empty img {
        width: 100px
    }
}

.trade__user-panel__more {
    color: #4ef09d;
    margin: 16px 0;
    cursor: pointer;
    width: 100%
}

.trade__user-panel__more .element5 {
    border: unset;
    width: 40px !important;
    height: 40px !important
}

.trade__user-panel__more .element5 div {
    width: 32px !important;
    height: 32px !important
}

.trade__user-panel__more span {
    margin-right: 8px
}

.trade__user-order-card {
    border-bottom: 1.5px solid #333;
    padding: 8px;
    width: 100%
}

.trade__user-order-card div.percent {
    width: 30px;
    height: 30px;
    border: 1px solid #4ef09d;
    padding: 1px;
    color: #fff;
    border-radius: 50%
}

.trade__user-order-card div.percent.sell {
    border: 1px solid #ff5a5a
}

.trade__user-order-card div.percent__inside {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 50%
}

.trade__user-order-card div.percent__inside div.bg {
    position: absolute;
    bottom: 0;
    background-color: #4ef09d;
    width: 100%
}

.trade__user-order-card div.percent__inside div.bg.sell {
    background-color: #ff5a5a
}

@media (min-width: 834px) {
    .trade__user-order-card {
        color: #fff;
        font-size: 12px
    }

    .trade__user-order-card.header {
        border: unset;
        padding-bottom: 0;
        color: #b2b2b2;
        font-weight: 500
    }

    .trade__user-order-card div.item {
        width: 10%
    }

    .trade__user-order-card div.btn {
        width: 8%
    }

    .trade__user-order-card span.item {
        width: 10%
    }

    .trade__user-order-card span.time {
        width: 12%
    }

    .trade__user-order-card span.type {
        width: 8%
    }

    .trade__user-order-card span.type.buy {
        color: #4ef09d
    }

    .trade__user-order-card span.type.sell {
        color: #ff5a5a
    }

    .trade__user-order-card span.pair {
        width: 14%
    }

    .trade__user-order-card span.condition,
    .trade__user-order-card span.btn {
        width: 8%
    }

    .trade__user-order-card .button6 {
        width: 32px
    }
}

@media (min-width: 992px) {
    .trade__user-order-card {
        font-size: 14px
    }
}

.trade__user-order-card div {
    line-height: 18px
}

.trade__user-order-card div.row1 {
    width: 100%;
    align-items: flex-start !important
}

.trade__user-order-card div.row1 .button6 {
    width: 32px
}

.trade__user-order-card div.row1__market {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 25%
}

.trade__user-order-card div.row1__market div.title-fa {
    color: #fff
}

.trade__user-order-card div.row1__market div.code {
    color: #b2b2b2;
    margin-top: 5px
}

.trade__user-order-card div.row1__info {
    width: 25%
}

.trade__user-order-card div.row1__info div.type {
    color: #4ef09d;
    margin-top: 5px
}

.trade__user-order-card div.row1__info div.type.sell {
    color: #ff5a5a
}

.trade__user-order-card div.row1__info div.mode {
    color: #fff
}

.trade__user-order-card div.row1__time {
    color: #b2b2b2;
    width: 25%
}

.trade__user-order-card div.row1__time div.val {
    margin-top: 5px
}

.trade__user-order-card div.row2 {
    width: 100%;
    margin-top: 10px
}

.trade__user-order-card div.row2__item {
    width: 25%
}

.trade__user-order-card div.row2__item div {
    line-height: 18px
}

.trade__user-order-card div.row2__item div.key {
    color: #b2b2b2
}

.trade__user-order-card div.row2__item div.val {
    color: #fff;
    margin-top: 10px
}

.trade__user-match-card {
    border-bottom: 1.5px solid #333;
    padding: 8px;
    width: 100%
}

@media (min-width: 834px) {
    .trade__user-match-card {
        color: #fff;
        font-size: 12px
    }

    .trade__user-match-card.header {
        border: unset;
        padding-bottom: 0;
        color: #b2b2b2;
        font-weight: 500
    }

    .trade__user-match-card span.item {
        width: 15%
    }

    .trade__user-match-card span.time {
        width: 20%
    }

    .trade__user-match-card span.type {
        width: 15%
    }

    .trade__user-match-card span.type.buy {
        color: #4ef09d
    }

    .trade__user-match-card span.type.sell {
        color: #ff5a5a
    }

    .trade__user-match-card span.pair {
        width: 20%
    }
}

@media (min-width: 992px) {
    .trade__user-match-card {
        font-size: 14px
    }
}

.trade__user-match-card div {
    line-height: 18px
}

.trade__user-match-card div.row1 {
    width: 100%;
    align-items: flex-start !important
}

.trade__user-match-card div.row1 .button6 {
    width: 32px
}

.trade__user-match-card div.row1__market {
    width: 25%
}

.trade__user-match-card div.row1__market div.title-fa {
    color: #fff
}

.trade__user-match-card div.row1__market div.code {
    color: #b2b2b2;
    margin-top: 5px
}

.trade__user-match-card div.row1__info {
    width: 25%
}

.trade__user-match-card div.row1__info div.type {
    color: #4ef09d;
    margin-top: 5px
}

.trade__user-match-card div.row1__info div.type.sell {
    color: #ff5a5a
}

.trade__user-match-card div.row1__info div.mode {
    color: #fff
}

.trade__user-match-card div.row1__time {
    color: #b2b2b2;
    width: 25%
}

.trade__user-match-card div.row1__time div.val {
    margin-top: 5px
}

.trade__user-match-card div.row2 {
    width: 100%;
    margin-top: 8px
}

.trade__user-match-card div.row2__item {
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: center
}

.trade__user-match-card div.row2__item div {
    line-height: 18px
}

.trade__user-match-card div.row2__item div.key {
    color: #b2b2b2
}

.trade__user-match-card div.row2__item div.val {
    color: #fff;
    margin-top: 10px
}

.trade-mobile {
    --middle-bg: #222;
    --content-text-primary: #fff;
    --content-text-accent: #4ef09d;
    width: 100vw;
    height: 100vh;
    padding-bottom: 170px;
    overflow-y: scroll
}

.trade-mobile.light {
    --middle-bg: #f2f2f2;
    --content-text-primary: #1a1a1a;
    --content-text-accent: #02a67f
}

.trade-mobile__body {
    width: 100%
}

.trade-mobile__top {
    width: 100%;
    padding: 0 16px;
    margin-top: 8px
}

.trade-mobile__top div.right {
    color: var(--content-text-primary)
}

.trade-mobile__top div.right img {
    margin-left: 8px
}

.trade-mobile__top div.left div {
    color: #b2b2b2;
    direction: ltr
}

.trade-mobile__top div.left div.up {
    color: var(--content-text-accent)
}

.trade-mobile__top div.left div.down {
    color: #ff5a5a
}

.trade-mobile__top div.left div.down img {
    transform: rotate(180deg)
}

.trade-mobile__top div.left img {
    margin-bottom: 4px
}

.trade-mobile__top div.left span {
    margin-left: 8px
}

.trade-mobile__middle {
    width: calc(100% - 32px);
    margin: 12px 16px 0;
    background-color: var(--middle-bg);
    border-radius: 8px
}

.trade-mobile__middle.twin {
    background-color: unset;
    margin-top: 8px
}

.trade-mobile__middle__wrapper {
    width: 100%;
    flex-direction: row-reverse !important;
    align-items: flex-start !important;
    padding: 10px 4px
}

.trade-mobile__middle__wrapper.twin {
    padding: 0;
    flex-direction: column !important
}

.trade-mobile__middle__container {
    width: calc((100% - 16px)/2)
}

.trade-mobile__middle__container.twin {
    width: 100%;
    background-color: var(--middle-bg);
    margin-top: 12px;
    border-radius: 8px
}

.trade-detail {
    width: 100vw;
    padding-bottom: 80px;
    --content-text-primary: #fff;
    --content-text-secondary: #b2b2b2;
    --content-text-accent: #4ef09d;
    --top-bg: rgba(34, 34, 34, .3490196078);
    --bg: #1a1a1a
}

.trade-detail.light {
    --content-text-primary: #1a1a1a;
    --content-text-secondary: #666;
    --content-text-accent: #02a67f;
    --top-bg: #e1e1e1;
    --bg: #e9e9e9
}

.trade-detail__body {
    width: 100%
}

.trade-detail__top {
    width: 100%;
    background-color: var(--top-bg);
    padding: 12px 16px 40px
}

.trade-detail__top div.left {
    flex-wrap: wrap;
    width: 55%
}

.trade-detail__top div.left div {
    width: 50%;
    padding: 0 4px
}

.trade-detail__top div.left div.min {
    border-left: 1px dashed var(--border_line_secondary)
}

.trade-detail__top div.left div.amount {
    border-top: 1px dashed var(--border_line_secondary);
    padding-top: 4px
}

.trade-detail__top div.left div.value {
    padding-top: 4px;
    border-left: 1px dashed var(--border_line_secondary);
    border-top: 1px dashed var(--border_line_secondary)
}

.trade-detail__top div.left span.key {
    color: var(--content-text-secondary)
}

.trade-detail__top div.left span.val {
    color: var(--content-text-primary);
    text-align: center
}

.trade-detail__top div.right div {
    color: var(--content-text-secondary);
    direction: ltr
}

.trade-detail__top div.right div.up {
    color: var(--content-text-accent)
}

.trade-detail__top div.right div.down {
    color: #ff5a5a
}

.trade-detail__top div.right div.down img {
    transform: rotate(180deg)
}

.trade-detail__top div.right div.options {
    margin-top: 8px;
    width: 100%;
    font-size: 10px;
    color: var(--content-text-secondary);
    min-width: 100px
}

.trade-detail__top div.right img {
    margin-bottom: 4px
}

.trade-detail__top div.right img.price-change-ic {
    margin-right: 8px
}

.trade-detail__buttons {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 0 16px 16px;
    background-color: var(--bg);
    z-index: 40
}

.trade-detail__buttons .button1,
.trade-detail__buttons .button5 {
    width: calc((100% - 16px)/2)
}

.trade-setting {
    width: 100vw;
    height: calc(100vh - 56px);
    background-color: #3a3a3ad1;
    position: fixed;
    top: 56px;
    left: 0;
    z-index: 100
}

@media (min-width: 834px) {
    .trade-setting {
        height: calc(100vh - 64px);
        top: 64px
    }
}

.trade-setting__body {
    width: 75%;
    height: 100%;
    background-color: #1a1a1a;
    padding: 16px 0 120px;
    overflow-y: scroll
}

@media (min-width: 834px) {
    .trade-setting__body {
        width: 40%;
        padding-bottom: 0
    }
}

@media (min-width: 992px) {
    .trade-setting__body {
        width: 25%
    }
}

.trade-setting div.close {
    width: 100%;
    padding: 0 16px;
    cursor: pointer
}

.trade-setting div.close img {
    transform: rotate(180deg)
}

.trade-setting div.head {
    color: #fff;
    text-align: right;
    padding-right: 16px;
    margin-top: 12px
}

.trade-setting div.title {
    border-bottom: 1px solid #333;
    width: 100%;
    padding: 4px 16px;
    color: #fff;
    text-align: right;
    margin-top: 24px
}

@media (min-width: 992px) {
    .trade-setting div.title {
        font-size: 14px
    }
}

.trade-setting div.list {
    width: 100%;
    padding: 0 16px
}

.trade-setting div.row {
    width: 100%;
    margin-top: 16px
}

.trade-setting div.row div.right {
    color: #fff
}

@media (min-width: 992px) {
    .trade-setting div.row div.right {
        font-size: 14px
    }
}

.trade-setting div.row div.right img {
    margin-left: 12px
}

.trade-chart {
    padding: 0 16px;
    overflow: hidden
}

@media (min-width: 992px) {
    .trade-chart {
        padding: 0
    }
}

.trade-chart.pro {
    margin-bottom: 8px
}

.trade-chart__chart {
    width: 100%;
    height: calc(100% - 64px) !important;
    position: absolute;
    left: 0;
    z-index: 11;
    top: 64px
}

.trade-chart__chart iframe {
    height: 100% !important;
    width: 100% !important
}

@media (min-width: 992px) {
    .trade-chart__chart {
        height: 100% !important;
        top: 0
    }
}

.trade-chart__chart .element5 {
    border: unset;
    width: 100% !important;
    height: 100% !important;
    background-color: #1a1a1a
}

.trade-chart .switch1 {
    width: 100%;
    height: 48px;
    margin-top: 0;
    border: unset;
    background-color: #333;
    margin-bottom: 16px
}

@media (min-width: 834px) {
    .trade-chart .switch1 {
        font-size: 14px;
        margin-top: 0
    }
}

.trade-chart .switch1 div.right,
.trade-chart .switch1 div.left {
    border-radius: 8px;
    border: unset
}

.trade-tablet {
    width: 100vw;
    height: 100vh;
    padding-bottom: 68px;
    overflow-y: scroll
}

.trade-tablet__body {
    width: 100%;
    padding: 10px
}

.trade-tablet__top {
    width: 100%;
    background-color: #222;
    border-radius: 8px;
    padding: 12px 8px;
    margin-bottom: 8px
}

@media (min-width: 992px) {
    .trade-tablet__top {
        padding: 8px
    }
}

.trade-tablet__top__right div.info {
    align-items: flex-start !important
}

.trade-tablet__top__right div.info img {
    cursor: pointer
}

.trade-tablet__top__right div.info img.image {
    width: 24px;
    margin-left: 4px
}

@media (min-width: 992px) {
    .trade-tablet__top__right div.info img.image {
        width: 32px
    }
}

.trade-tablet__top__right div.info button.info {
    background-color: unset;
    border: unset;
    outline: unset;
    width: 20px;
    height: 20px;
    margin-left: 16px
}

.trade-tablet__top__right div.info button.info img {
    width: 20px
}

.trade-tablet__top__right div span.code {
    color: #b2b2b2
}

.trade-tablet__top__right div.title_fa {
    cursor: pointer;
    color: #fff
}

@media (min-width: 992px) {
    .trade-tablet__top__right div.title_fa {
        font-size: 14px;
        width: 100%;
        justify-content: space-between
    }
}

.trade-tablet__top__right div.title_fa img {
    width: 16px;
    margin-right: 4px;
    transform: rotate(-90deg);
    cursor: pointer;
    transition-duration: .1s
}

@media (min-width: 992px) {
    .trade-tablet__top__right div.title_fa img {
        width: 20px
    }
}

.trade-tablet__top__right div.title_fa img.enable {
    transition-duration: .1s;
    transform: rotate(90deg)
}

.trade-tablet__top__right div.price {
    margin-right: 16px
}

.trade-tablet__top__right div.price div {
    color: #b2b2b2;
    direction: ltr
}

.trade-tablet__top__right div.price div.up {
    color: #4ef09d
}

.trade-tablet__top__right div.price div.down {
    color: #ff5a5a
}

.trade-tablet__top__right div.price div.down img {
    transform: rotate(180deg)
}

.trade-tablet__top__right div.price img {
    margin-bottom: 4px
}

.trade-tablet__top__right div.price span {
    margin-left: 8px
}

.trade-tablet__top__left .switch1 {
    width: 155px
}

.trade-tablet__top__left div.alert {
    cursor: pointer;
    color: #b2b2b2;
    margin-left: 24px
}

.trade-tablet__top__left div.alert img {
    margin-top: 4px;
    width: 20px
}

.trade-tablet__top__left div.item {
    margin-left: 16px
}

.trade-tablet__top__left div.item span.key {
    color: #b2b2b2
}

.trade-tablet__top__left div.item span.val {
    color: #fff
}

.trade-tablet__middle {
    width: 100%;
    align-items: flex-start !important;
    margin-bottom: 8px
}

.trade-tablet__middle__right {
    width: calc((100% - 8px)/2);
    background-color: #222;
    border-radius: 8px
}

.trade-tablet__middle__left {
    width: calc((100% - 8px)/2);
    background-color: #222;
    border-radius: 8px;
    height: 100%
}

.trade-desktop {
    width: 100vw
}

.trade-desktop__body {
    width: 100%;
    padding: 8px
}

.trade-desktop__body__pro {
    width: 100%
}

.trade-desktop__body__classic {
    width: 100%;
    margin-bottom: 8px
}

.trade-desktop__body__classic__bottom {
    width: 100%;
    align-items: flex-start !important
}

.trade-desktop__body__classic__left {
    width: calc((100% - 16px)*.24);
    height: 100%
}

.trade-desktop__body__classic__right {
    width: calc((100% - 16px)*.24);
    background-color: #222;
    border-radius: 8px;
    height: 100%
}

.trade-desktop__middle {
    width: 100%;
    align-items: flex-start !important;
    margin-bottom: 8px
}

.trade-desktop__middle.classic {
    height: 100%;
    width: calc((100% - 20px)*.52);
    margin-bottom: 0
}

.trade-desktop__middle__pro {
    width: 100%;
    align-items: flex-start !important;
    height: 100%
}

.trade-desktop__middle__classic {
    width: 100%
}

.trade-desktop__middle__classic div.input-card {
    background-color: #222;
    width: 100%;
    border-radius: 8px
}

.trade-desktop__middle__classic div.input-card .trade__card3 {
    padding: 8px
}

.trade-desktop__middle__create {
    width: calc((100% - 10px)/4);
    background-color: #222;
    border-radius: 8px
}

.trade-desktop__middle__left {
    width: calc((100% - 10px)*.75);
    height: 100%;
    border-radius: 8px
}

.trade-desktop__middle__left__wrapper {
    height: calc(100% - 80px);
    margin-top: 10px
}

.trade-desktop__middle__left__panel {
    width: 33%;
    background-color: #222;
    border-radius: 8px;
    margin-left: 10px
}

.trade-mobile-guide {
    width: 100vw;
    height: 100vh;
    background-color: #3a3a3ad1;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 16px
}

@media (min-width: 834px) {
    .trade-mobile-guide {
        padding: 0 30%;
        display: flex;
        align-items: center;
        justify-content: center
    }

    .trade-mobile-guide .switch3 {
        margin-bottom: 16px
    }
}

@media (min-width: 992px) {
    .trade-mobile-guide {
        padding: 0 36%
    }
}

.trade-mobile-guide__body {
    width: 100%;
    background-color: #1a1a1a;
    border-radius: 16px;
    padding-bottom: 24px;
    height: 80%
}

.trade-mobile-guide__body__wrapper {
    width: 100%;
    padding: 0 16px;
    height: calc(100% - 80px);
    overflow-y: scroll
}

.trade-mobile-guide__body__title {
    color: #fff
}

@media (min-width: 834px) {
    .trade-mobile-guide__body__title {
        font-size: 14px
    }
}

.trade-mobile-guide__body__options {
    width: 100%;
    margin-top: 12px
}

.trade-mobile-guide__body__options .tick-button {
    margin-left: 16px;
    width: unset
}

.trade-mobile-guide__body__image,
.trade-mobile-guide__body__image img {
    width: 100%
}

.trade-mobile-guide__body__desc {
    color: #fff
}

@media (min-width: 834px) {
    .trade-mobile-guide__body__desc {
        font-size: 14px
    }
}

.trade-mobile-guide__body__desc div {
    width: 100%;
    text-align: right
}

.trade-mobile-guide__body div.close {
    padding-left: 16px;
    padding-top: 12px;
    width: 100%
}

.trade-mobile-guide__body div.close img {
    cursor: pointer
}

.trade-validation-popup {
    width: 100vw;
    height: 100vh;
    background-color: #3a3a3ad1;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 0 16px
}

@media (min-width: 834px) {
    .trade-validation-popup {
        padding: 0 30%
    }
}

@media (min-width: 992px) {
    .trade-validation-popup {
        padding: 0 38%
    }
}

.trade-validation-popup .element3 {
    margin-top: 16px
}

.trade-validation-popup__body {
    width: 100%;
    background-color: #1a1a1a;
    border-radius: 16px;
    padding: 16px;
    max-height: 85%;
    overflow-y: scroll
}

.trade-validation-popup__close {
    width: 100%;
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 30
}

.trade-validation-popup__close img {
    cursor: pointer
}

.trade-validation-popup__head {
    width: 100%;
    color: #fff
}

.trade-validation-popup__row1 {
    width: 100%;
    margin: 16px 0
}

.trade-validation-popup__row1__mode {
    height: 48px;
    border-radius: 0 5px 5px 0;
    background: #4ef09d0d;
    color: #4ef09d;
    min-width: 110px;
    margin-left: -16px
}

.trade-validation-popup__row1__mode.sell {
    background: #ff5a5a0d;
    color: #ff5a5a
}

.trade-validation-popup__row1__market {
    color: #fff
}

.trade-validation-popup__row1__market img {
    width: 24px;
    margin-left: 8px;
    height: 24px
}

.trade-validation-popup__row2 {
    width: 100%;
    margin-bottom: 12px
}

.trade-validation-popup__row2 div.key {
    color: #b2b2b2
}

.trade-validation-popup__row2 div.val {
    color: #fff
}

.trade-validation-popup__row2 div.val span {
    margin-right: 4px
}

.trade-validation-popup__row3 {
    width: 100%;
    padding-top: 12px;
    border-top: 1px solid #222
}

.trade-validation-popup__row3 div.key {
    color: #b2b2b2
}

.trade-validation-popup__row3 div.val {
    color: #fff
}

.trade-validation-popup__row3 div.val span {
    margin-right: 4px
}

.trade-validation-popup__buttons {
    margin-top: 16px
}

.trade-validation-popup__buttons.sell .button1 {
    background-color: #ff5a5a
}

.trade-validation-popup__buttons .button1,
.trade-validation-popup__buttons .button2 {
    width: calc((100% - 16px)/2)
}

.trade-sub-wallet {
    width: 100%;
    --content-text-primary: #fff;
    --content-text-accent: #4ef09d;
    --list-bg: #333;
    --content-tab-text: #b2b2b2;
    --tab-text-enable: #4ef09d;
    --tab-bg: #1a1a1a;
    --tab-bg-enable: #222
}

.trade-sub-wallet.light {
    --content-text-primary: #1a1a1a;
    --content-text-accent: #02a67f;
    --list-bg: #e1e1e1;
    --content-tab-text: #666;
    --tab-text-enable: #02a67f;
    --tab-bg: #e9e9e9;
    --tab-bg-enable: #f2f2f2
}

.trade-sub-wallet__tabs {
    width: 100%;
    height: 45px;
    border-radius: 8px 0 0 8px
}

.trade-sub-wallet__tabs :first-child {
    border-radius: 0 8px 0 0;
    border-right: 2px solid var(--tab-bg-enable)
}

.trade-sub-wallet__tabs :last-child {
    border-radius: 8px 0 0;
    border-left: 2px solid var(--tab-bg-enable)
}

.trade-sub-wallet__tabs div {
    width: 50%;
    color: var(--content-tab-text);
    height: 100%;
    background-color: var(--tab-bg);
    cursor: pointer;
    transition-duration: .3s;
    border-top: 2px solid var(--tab-bg-enable)
}

.trade-sub-wallet__tabs div.selected {
    color: var(--tab-text-enable);
    background-color: var(--tab-bg-enable);
    border-top: 2px solid var(--tab-text-enable);
    border-right: unset;
    border-left: unset;
    transition-duration: .3s
}

.trade-light {
    width: 100vw;
    padding-bottom: 170px;
    background-color: #e9e9e9
}

.trade-light__body {
    width: 100%
}

.trade-light__tab {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border-bottom: 1px solid #b2b2b2
}

.trade-light__tab div.wrapper {
    height: 100%;
    align-items: flex-end !important
}

.trade-light__tab div.wrapper div.tab {
    color: #666;
    padding-bottom: 8px;
    margin-left: 32px;
    border-bottom: 2px solid transparent;
    cursor: pointer
}

.trade-light__tab div.wrapper div.tab img {
    margin-bottom: 4px;
    margin-right: 4px
}

.trade-light__tab div.wrapper div.tab.selected {
    border-bottom: 2px solid #02a67f;
    color: #1a1a1a
}

.trade-light__tab div.list {
    background-color: #e9e9e9;
    border: 1px solid #b2b2b2;
    border-radius: 0 0 8px 8px;
    color: #1a1a1a;
    padding: 16px 12px 0;
    position: absolute;
    top: 36px;
    min-width: 100px;
    display: none !important
}

.trade-light__tab div.list.show {
    display: flex !important;
    z-index: 501
}

.trade-light__tab div.list div {
    margin-bottom: 12px;
    cursor: pointer
}

.trade-light__panel {
    width: 100%;
    height: 100%
}

.trade-light__panel .switch1 {
    width: 100%;
    height: 48px;
    margin-top: 0;
    border: unset;
    background-color: #fff;
    margin-bottom: 12px
}

@media (min-width: 834px) {
    .trade-light__panel .switch1 {
        width: calc(100% - 32px);
        font-size: 14px;
        margin-top: 0
    }
}

.trade-light__panel .switch1 div.right,
.trade-light__panel .switch1 div.left {
    border-radius: 8px;
    border: unset
}

@media (min-width: 834px) {
    .trade-light__panel .switch3 {
        margin-bottom: 0 !important
    }
}

.trade-light__panel .switch3 div {
    margin: 16px 16px 0
}

@media (min-width: 834px) {
    .trade-light__panel .switch3 div {
        margin: 12px 12px 0;
        padding-bottom: 0
    }
}

@media (min-width: 992px) {
    .trade-light__panel .switch3 div {
        padding-bottom: 8px
    }
}

.trade-light__orders {
    width: calc((100% - 16px)/2)
}

@media (min-width: 834px) {
    .trade-light__orders {
        width: 100%
    }
}

.trade-light__orders.type-4 {
    width: 100%
}

@media (max-width: 834px) {
    .trade-light__orders.type-4 {
        padding: 0 8px
    }
}

@media (min-width: 834px) {
    .trade-light__orders {
        padding: 0 16px
    }
}

.trade-light__orders__sort-header {
    width: 100%;
    margin-top: 16px
}

.trade-light__orders__sort-header.mobile {
    position: absolute;
    bottom: 0;
    margin-top: 0;
    justify-content: flex-end
}

.trade-light__orders__sort-header.fix {
    margin-top: 0;
    width: 144px;
    position: absolute;
    left: 12px;
    top: -32px
}

@media (min-width: 992px) {
    .trade-light__orders__sort-header.fix {
        top: -40px
    }
}

.trade-light__orders__sort-header div.title {
    color: #1a1a1a
}

.trade-light__orders__sort-header div.options img {
    cursor: pointer;
    margin-right: 12px
}

.trade-light__orders__list-header {
    width: 100%;
    color: #1a1a1a;
    margin-bottom: 4px
}

.trade-light__orders__list-header.type-1 {
    margin-bottom: 0
}

@media (min-width: 834px) {
    .trade-light__orders__list-header {
        margin-top: 16px
    }
}

.trade-light__orders__wrapper {
    width: 100%
}

.trade-light__orders__wrapper.type-4 {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start
}

.trade-light__orders__box {
    background-color: #e1e1e1;
    border-radius: 8px;
    padding: 8px;
    color: #1a1a1a;
    position: absolute;
    width: 190px;
    left: -195px;
    z-index: 99;
    height: 90px;
    bottom: -45px
}

.trade-light__orders__box div.indicator {
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid #e1e1e1;
    width: 0px;
    height: 0px;
    position: absolute;
    right: -6px
}

.trade-light__orders__box div.indicator.type-4.buy {
    border-right: 6px solid #e1e1e1;
    border-left: unset;
    left: -6px;
    right: unset
}

.trade-light__orders__box div span.value {
    width: unset
}

.trade-light__orders__box div span.box-key {
    justify-content: flex-start
}

.trade-light__orders__box.type-4.buy {
    right: -165px;
    left: unset
}

.trade-light__orders__box.type-3.sell {
    top: -45px;
    bottom: unset
}

.trade-light__orders__box div {
    width: 100%
}

.trade-light__orders__match-price {
    width: 100%;
    color: #02a67f;
    cursor: pointer
}

.trade-light__orders__match-price img {
    margin-bottom: 2px
}

.trade-light__orders__match-price.type-1,
.trade-light__orders__match-price.type-2,
.trade-light__orders__match-price.type-3 {
    margin: 8px 0
}

@media (min-width: 834px) {
    .trade-light__orders__match-price.type-3 {
        margin: 12px 0 10px
    }
}

@media (min-width: 834px) {
    .trade-light__orders__match-price {
        justify-content: flex-start;
        font-size: 16px
    }
}

.trade-light__orders__match-price.down {
    color: #ff5a5a
}

.trade-light__orders__match-price img {
    margin-right: 4px
}

.trade-light__orders__list {
    width: 100%
}

.trade-light__orders__list.type-4 {
    width: calc((100% - 12px)/2)
}

.trade-light__orders__list.reverse {
    display: flex;
    flex-direction: column-reverse
}

.trade-light__orders__list span {
    width: 100%
}

.trade-light__orders__list span.shadow {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    background-color: #02a67f12
}

.trade-light__orders__list span.shadow.sell {
    background-color: #ff5a5a0d
}

.trade-light__orders__list span.shadow.buy.type-4 {
    left: 0;
    right: unset
}

.trade-light__orders__list span.price {
    color: #02a67f;
    justify-content: flex-start
}

.trade-light__orders__list span.price.sell {
    color: #ff5a5a
}

.trade-light__orders__list span.price.type-4 {
    justify-content: flex-end
}

.trade-light__orders__list span.price.type-4.sell {
    justify-content: flex-start
}

.trade-light__orders__list span.remain.type-1 {
    justify-content: flex-end
}

@media (min-width: 834px) {
    .trade-light__orders__list span.remain.type-1 {
        justify-content: center
    }
}

.trade-light__orders__list span.remain.type-2 {
    justify-content: flex-end
}

@media (min-width: 834px) {
    .trade-light__orders__list span.remain.type-2 {
        justify-content: center
    }
}

.trade-light__orders__list span.remain.type-3 {
    justify-content: flex-end
}

@media (min-width: 834px) {
    .trade-light__orders__list span.remain.type-3 {
        justify-content: center
    }
}

.trade-light__orders__list span.remain.type-4 {
    justify-content: flex-start
}

.trade-light__orders__list span.remain.type-4.sell,
.trade-light__orders__list span.value {
    justify-content: flex-end
}

.trade-light__orders__list span.isuser {
    margin-left: 4px;
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-right: 4px solid #015945
}

@media (min-width: 834px) {
    .trade-light__orders__list span.isuser {
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
        border-right: 8px solid #015945
    }
}

.trade-light__orders__list div.row {
    cursor: pointer;
    width: 100%;
    color: #1a1a1a
}

@media (min-width: 992px) {
    .trade-light__orders__list div.row {
        border: .5px dashed transparent
    }
}

.trade-light__orders__list div.row.hover {
    background-color: #3333330d
}

.trade-light__orders__list div.row.border-top {
    border-top: .5px dashed #666
}

.trade-light__orders__list div.row.border-bottom {
    border-bottom: .5px dashed #666
}

.trade-light__orders__list div.row.type-4.buy {
    flex-direction: row-reverse !important
}

.trade-light__matches {
    width: 100%;
    padding: 0 16px
}

@media (min-width: 992px) {
    .trade-light__matches.classic {
        background-color: #f2f2f2;
        border-radius: 8px;
        padding-top: 16px;
        margin-top: 8px
    }
}

.trade-light__matches div.listtitle {
    color: #1a1a1a;
    width: 100%;
    text-align: center;
    margin-top: 8px
}

.trade-light__matches div.header {
    width: 100%;
    color: #1a1a1a
}

@media (min-width: 834px) {
    .trade-light__matches div.header {
        margin-top: 16px
    }
}

.trade-light__matches div.header span {
    width: 33%;
    text-align: center
}

@media (min-width: 834px) {
    .trade-light__matches div.header span.price {
        text-align: right
    }

    .trade-light__matches div.header span.time {
        text-align: left
    }
}

.trade-light__matches div.list {
    width: 100%
}

.trade-light__matches div.list div {
    width: 100%;
    color: #1a1a1a
}

.trade-light__matches div.list span {
    width: 33%;
    text-align: center
}

.trade-light__matches div.list span.buy {
    color: #02a67f
}

.trade-light__matches div.list span.sell {
    color: #ff5a5a
}

@media (min-width: 834px) {
    .trade-light__matches div.list span.price {
        text-align: right
    }

    .trade-light__matches div.list span.time {
        text-align: left
    }
}

.trade-light__card3 {
    width: 100%
}

@media (min-width: 834px) {
    .trade-light__card3 {
        width: 100%;
        padding: 8px 16px
    }
}

.trade-light__card3.twin {
    width: 100%;
    padding: 4px
}

.trade-light__card3 .switch1 {
    width: 100%;
    height: 48px;
    margin-top: 0;
    border: unset;
    background-color: #fff;
    margin-bottom: 12px
}

@media (min-width: 834px) {
    .trade-light__card3 .switch1 {
        font-size: 14px;
        margin-top: 0;
        margin-bottom: 16px
    }
}

.trade-light__card3 .switch1 div.right,
.trade-light__card3 .switch1 div.left {
    border-radius: 8px;
    border: unset
}

.trade-light__card3 .switch1 div.left.selected {
    background: #ff5a5a40
}

.trade-light__card3__twin,
.trade-light__card1 {
    width: 100%
}

.trade-light__card1.twin {
    width: calc((100% - 16px)/2)
}

.trade-light__card1 .input3 {
    margin-bottom: 12px
}

.trade-light__card1 div.input-title {
    width: 100%;
    color: #1a1a1a;
    margin-bottom: 4px
}

.trade-light__card1 div.input-title div {
    cursor: pointer
}

@media (min-width: 834px) {
    .trade-light__card1 div.input-title div {
        font-size: 12px
    }
}

@media (min-width: 992px) {
    .trade-light__card1 div.input-title div {
        font-size: 14px
    }
}

@media (min-width: 992px) {
    .trade-light__card1 div.input-title {
        font-size: 14px
    }
}

.trade-light__card1 div.input-title img {
    width: 16px
}

@media (min-width: 834px) {
    .trade-light__card1 div.input-title img {
        width: 20px
    }
}

.trade-light__card1 div.input-title span.balance-amount {
    margin-left: 8px
}

.trade-light__card1 div.output {
    width: 100%;
    background-color: #d8d8d8;
    border-radius: 8px;
    padding: 8px 0;
    height: 48px
}

@media (min-width: 992px) {
    .trade-light__card1 div.output {
        height: 56px
    }
}

.trade-light__card1 div.output div {
    width: 50%
}

.trade-light__card1 div.output div.output-fee {
    border-left: 1px dashed #b2b2b2
}

.trade-light__card1 div.output div span {
    line-height: 18px
}

.trade-light__card1 div.output div span.key {
    color: #666
}

.trade-light__card1 div.output div span.val {
    color: #1a1a1a
}

@media (min-width: 834px) {
    .trade-light__card1 div.output div span.val {
        font-size: 12px
    }
}

@media (min-width: 992px) {
    .trade-light__card1 div.output div span.val {
        margin-top: 8px
    }
}

.trade-light__user-panel {
    margin: 16px 16px 24px;
    width: calc(100% - 32px);
    background-color: #fff;
    border-radius: 8px;
    padding: 8px 0
}

@media (min-width: 834px) {
    .trade-light__user-panel {
        width: 100%;
        margin: 0;
        background-color: #f2f2f2;
        padding-bottom: 100px
    }
}

.trade-light__user-panel .tick-button {
    margin-right: 8px
}

.trade-light__user-panel .switch3 {
    margin-bottom: 8px
}

.trade-light__user-panel .switch3 div {
    margin-right: 8px;
    margin-left: 24px
}

.trade-light__user-panel__empty {
    width: 100%;
    height: 100%;
    padding: 40px 0
}

.trade-light__user-panel__empty img {
    width: 80px
}

@media (min-width: 834px) {
    .trade-light__user-panel__empty {
        padding: 60px 0
    }

    .trade-light__user-panel__empty img {
        width: 100px
    }
}

.trade-light__user-panel__more {
    color: #02a67f;
    margin: 16px 0;
    cursor: pointer;
    width: 100%
}

.trade-light__user-panel__more .element5 {
    border: unset;
    width: 40px !important;
    height: 40px !important
}

.trade-light__user-panel__more .element5 div {
    width: 32px !important;
    height: 32px !important
}

.trade-light__user-panel__more span {
    margin-right: 8px
}

.trade-light__user-order-card {
    border-bottom: 1.5px solid #d8d8d8;
    padding: 8px;
    width: 100%
}

.trade-light__user-order-card div.percent {
    width: 30px;
    height: 30px;
    border: 1px solid #02a67f;
    padding: 1px;
    color: #1a1a1a;
    border-radius: 50%
}

.trade-light__user-order-card div.percent.sell {
    border: 1px solid #ff5a5a
}

.trade-light__user-order-card div.percent__inside {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 50%
}

.trade-light__user-order-card div.percent__inside div.bg {
    position: absolute;
    bottom: 0;
    background-color: #02a67f;
    width: 100%
}

.trade-light__user-order-card div.percent__inside div.bg.sell {
    background-color: #ff5a5a
}

@media (min-width: 834px) {
    .trade-light__user-order-card {
        color: #1a1a1a;
        font-size: 12px
    }

    .trade-light__user-order-card.header {
        border: unset;
        padding-bottom: 0;
        color: #666;
        font-weight: 500
    }

    .trade-light__user-order-card div.item {
        width: 10%
    }

    .trade-light__user-order-card div.btn {
        width: 8%
    }

    .trade-light__user-order-card span.item {
        width: 10%
    }

    .trade-light__user-order-card span.time {
        width: 12%
    }

    .trade-light__user-order-card span.type {
        width: 8%
    }

    .trade-light__user-order-card span.type.buy {
        color: #02a67f
    }

    .trade-light__user-order-card span.type.sell {
        color: #ff5a5a
    }

    .trade-light__user-order-card span.pair {
        width: 14%
    }

    .trade-light__user-order-card span.condition,
    .trade-light__user-order-card span.btn {
        width: 8%
    }

    .trade-light__user-order-card .button6 {
        width: 32px
    }
}

@media (min-width: 992px) {
    .trade-light__user-order-card {
        font-size: 14px
    }
}

.trade-light__user-order-card div {
    line-height: 18px
}

.trade-light__user-order-card div.row1 {
    width: 100%;
    align-items: flex-start !important
}

.trade-light__user-order-card div.row1 .button6 {
    width: 32px
}

.trade-light__user-order-card div.row1__market {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 25%
}

.trade-light__user-order-card div.row1__market div.title-fa {
    color: #1a1a1a
}

.trade-light__user-order-card div.row1__market div.code {
    color: #666;
    margin-top: 5px
}

.trade-light__user-order-card div.row1__info {
    width: 25%
}

.trade-light__user-order-card div.row1__info div.type {
    color: #02a67f;
    margin-top: 5px
}

.trade-light__user-order-card div.row1__info div.type.sell {
    color: #ff5a5a
}

.trade-light__user-order-card div.row1__info div.mode {
    color: #1a1a1a
}

.trade-light__user-order-card div.row1__time {
    color: #666;
    width: 25%
}

.trade-light__user-order-card div.row1__time div.val {
    margin-top: 5px
}

.trade-light__user-order-card div.row2 {
    width: 100%;
    margin-top: 10px
}

.trade-light__user-order-card div.row2__item {
    width: 25%
}

.trade-light__user-order-card div.row2__item div {
    line-height: 18px
}

.trade-light__user-order-card div.row2__item div.key {
    color: #666
}

.trade-light__user-order-card div.row2__item div.val {
    color: #1a1a1a;
    margin-top: 10px
}

.trade-light__user-match-card {
    border-bottom: 1.5px solid #d8d8d8;
    padding: 8px;
    width: 100%
}

@media (min-width: 834px) {
    .trade-light__user-match-card {
        color: #1a1a1a;
        font-size: 12px
    }

    .trade-light__user-match-card.header {
        border: unset;
        padding-bottom: 0;
        color: #666;
        font-weight: 500
    }

    .trade-light__user-match-card span.item {
        width: 15%
    }

    .trade-light__user-match-card span.time {
        width: 20%
    }

    .trade-light__user-match-card span.type {
        width: 15%
    }

    .trade-light__user-match-card span.type.buy {
        color: #02a67f
    }

    .trade-light__user-match-card span.type.sell {
        color: #ff5a5a
    }

    .trade-light__user-match-card span.pair {
        width: 20%
    }
}

@media (min-width: 992px) {
    .trade-light__user-match-card {
        font-size: 14px
    }
}

.trade-light__user-match-card div {
    line-height: 18px
}

.trade-light__user-match-card div.row1 {
    width: 100%;
    align-items: flex-start !important
}

.trade-light__user-match-card div.row1 .button6 {
    width: 32px
}

.trade-light__user-match-card div.row1__market {
    width: 25%
}

.trade-light__user-match-card div.row1__market div.title-fa {
    color: #1a1a1a
}

.trade-light__user-match-card div.row1__market div.code {
    color: #666;
    margin-top: 5px
}

.trade-light__user-match-card div.row1__info {
    width: 25%
}

.trade-light__user-match-card div.row1__info div.type {
    color: #02a67f;
    margin-top: 5px
}

.trade-light__user-match-card div.row1__info div.type.sell {
    color: #ff5a5a
}

.trade-light__user-match-card div.row1__info div.mode {
    color: #1a1a1a
}

.trade-light__user-match-card div.row1__time {
    color: #666;
    width: 25%
}

.trade-light__user-match-card div.row1__time div.val {
    margin-top: 5px
}

.trade-light__user-match-card div.row2 {
    width: 100%;
    margin-top: 8px
}

.trade-light__user-match-card div.row2__item {
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: center
}

.trade-light__user-match-card div.row2__item div {
    line-height: 18px
}

.trade-light__user-match-card div.row2__item div.key {
    color: #666
}

.trade-light__user-match-card div.row2__item div.val {
    color: #1a1a1a;
    margin-top: 10px
}

.trade-detail-light {
    width: 100vw;
    height: 100vh;
    overflow-y: scroll;
    padding-bottom: 80px;
    background-color: #e9e9e9
}

.trade-detail-light__body {
    width: 100%
}

.trade-detail-light__top {
    width: 100%;
    background-color: #e1e1e1;
    padding: 12px 16px 40px
}

.trade-setting-light {
    width: 100vw;
    height: calc(100vh - 56px);
    background-color: #1a1a1ab2;
    position: fixed;
    top: 56px;
    left: 0;
    z-index: 100
}

@media (min-width: 834px) {
    .trade-setting-light {
        height: calc(100vh - 64px);
        top: 64px
    }
}

.trade-setting-light__body {
    width: 75%;
    height: 100%;
    background-color: #f2f2f2;
    padding: 16px 0 120px;
    overflow-y: scroll
}

@media (min-width: 834px) {
    .trade-setting-light__body {
        width: 40%;
        padding-bottom: 0
    }
}

@media (min-width: 992px) {
    .trade-setting-light__body {
        width: 25%
    }
}

.trade-setting-light div.close {
    width: 100%;
    padding: 0 16px;
    cursor: pointer
}

.trade-setting-light div.close img {
    transform: rotate(180deg)
}

.trade-setting-light div.head {
    color: #1a1a1a;
    text-align: right;
    padding-right: 16px;
    margin-top: 12px
}

.trade-setting-light div.title {
    border-bottom: 1px solid #d8d8d8;
    width: 100%;
    padding: 4px 16px;
    color: #1a1a1a;
    text-align: right;
    margin-top: 24px
}

@media (min-width: 992px) {
    .trade-setting-light div.title {
        font-size: 14px
    }
}

.trade-setting-light div.list {
    width: 100%;
    padding: 0 16px
}

.trade-setting-light div.row {
    width: 100%;
    margin-top: 16px
}

.trade-setting-light div.row div.right {
    color: #1a1a1a
}

@media (min-width: 992px) {
    .trade-setting-light div.row div.right {
        font-size: 14px
    }
}

.trade-setting-light div.row div.right img {
    margin-left: 12px
}

.trade-chart-light {
    padding: 0 16px;
    overflow: hidden
}

@media (min-width: 992px) {
    .trade-chart-light {
        padding: 0
    }
}

.trade-chart-light.pro {
    margin-bottom: 8px
}

.trade-chart-light__chart {
    width: 100%;
    height: calc(100% - 64px) !important;
    position: absolute;
    left: 0;
    z-index: 11;
    top: 64px
}

.trade-chart-light__chart iframe {
    height: 100% !important;
    width: 100% !important
}

@media (min-width: 992px) {
    .trade-chart-light__chart {
        height: 100% !important;
        top: 0
    }
}

.trade-chart-light__chart .element5 {
    border: unset;
    width: 100% !important;
    height: 100% !important;
    background-color: #fff
}

.trade-chart-light .switch1 {
    width: 100%;
    height: 48px;
    margin-top: 0;
    border: unset;
    background-color: #fff;
    margin-bottom: 16px
}

@media (min-width: 834px) {
    .trade-chart-light .switch1 {
        font-size: 14px;
        margin-top: 0
    }
}

.trade-chart-light .switch1 div.right,
.trade-chart-light .switch1 div.left {
    border-radius: 8px;
    border: unset
}

.trade-tablet-light {
    width: 100vw;
    height: 100vh;
    padding-bottom: 68px;
    overflow-y: scroll;
    background-color: #e9e9e9
}

.trade-tablet-light__body {
    width: 100%;
    padding: 10px
}

.trade-tablet-light__top {
    width: 100%;
    border-radius: 8px;
    padding: 12px 8px;
    margin-bottom: 8px
}

@media (min-width: 992px) {
    .trade-tablet-light__top {
        padding: 8px;
        background-color: #f2f2f2
    }
}

.trade-tablet-light__top__right div.info {
    align-items: flex-start !important
}

.trade-tablet-light__top__right div.info img {
    cursor: pointer
}

.trade-tablet-light__top__right div.info img.image {
    width: 24px;
    margin-left: 4px
}

@media (min-width: 992px) {
    .trade-tablet-light__top__right div.info img.image {
        width: 32px
    }
}

.trade-tablet-light__top__right div button.info {
    background-color: unset;
    border: unset;
    outline: unset;
    width: 20px;
    height: 20px;
    margin-left: 16px
}

.trade-tablet-light__top__right div button.info img {
    width: 20px
}

.trade-tablet-light__top__right div span.code {
    color: #666
}

.trade-tablet-light__top__right div.title_fa {
    color: #1a1a1a;
    cursor: pointer
}

@media (min-width: 992px) {
    .trade-tablet-light__top__right div.title_fa {
        font-size: 14px;
        width: 100%;
        justify-content: space-between
    }
}

.trade-tablet-light__top__right div.title_fa img {
    width: 16px;
    margin-right: 4px;
    transform: rotate(-90deg);
    cursor: pointer;
    transition-duration: .1s
}

@media (min-width: 992px) {
    .trade-tablet-light__top__right div.title_fa img {
        width: 20px
    }
}

.trade-tablet-light__top__right div.title_fa img.enable {
    transition-duration: .1s;
    transform: rotate(90deg)
}

.trade-tablet-light__top__right div.price {
    margin-right: 16px
}

.trade-tablet-light__top__right div.price div {
    color: #b2b2b2;
    direction: ltr
}

.trade-tablet-light__top__right div.price div.up {
    color: #02a67f
}

.trade-tablet-light__top__right div.price div.down {
    color: #ff5a5a
}

.trade-tablet-light__top__right div.price div.down img {
    transform: rotate(180deg)
}

.trade-tablet-light__top__right div.price img {
    margin-bottom: 4px
}

.trade-tablet-light__top__right div.price span {
    margin-left: 8px
}

.trade-tablet-light__top__left .switch1 {
    width: 155px
}

.trade-tablet-light__top__left div.alert {
    cursor: pointer;
    color: #666;
    margin-left: 24px
}

.trade-tablet-light__top__left div.alert img {
    margin-top: 4px;
    width: 20px
}

.trade-tablet-light__top__left div.item {
    margin-left: 16px
}

.trade-tablet-light__top__left div.item span.key {
    color: #666
}

.trade-tablet-light__top__left div.item span.val {
    color: #1a1a1a
}

.trade-tablet-light__middle {
    width: 100%;
    align-items: flex-start !important;
    margin-bottom: 8px
}

.trade-tablet-light__middle__right {
    width: calc((100% - 8px)/2);
    background-color: #f2f2f2;
    border-radius: 8px
}

.trade-tablet-light__middle__left {
    width: calc((100% - 8px)/2);
    background-color: #f2f2f2;
    border-radius: 8px;
    height: 100%
}

.trade-desktop-light {
    width: 100vw;
    background-color: #e9e9e9
}

.trade-desktop-light__body {
    width: 100%;
    padding: 8px
}

.trade-desktop-light__body__pro {
    width: 100%
}

.trade-desktop-light__body__classic {
    width: 100%;
    margin-bottom: 8px
}

.trade-desktop-light__body__classic__bottom {
    width: 100%;
    align-items: flex-start !important
}

.trade-desktop-light__body__classic__left {
    width: calc((100% - 16px)*.24);
    height: 100%
}

.trade-desktop-light__body__classic__right {
    width: calc((100% - 16px)*.24);
    background-color: #f2f2f2;
    border-radius: 8px;
    height: 100%
}

.trade-desktop-light__middle {
    width: 100%;
    align-items: flex-start !important;
    margin-bottom: 8px
}

.trade-desktop-light__middle.classic {
    height: 100%;
    margin-bottom: 0;
    width: calc((100% - 20px)*.52)
}

.trade-desktop-light__middle__pro {
    width: 100%;
    align-items: flex-start !important;
    height: 100%
}

.trade-desktop-light__middle__classic {
    width: 100%
}

.trade-desktop-light__middle__classic div.input-card {
    background-color: #f2f2f2;
    width: 100%;
    border-radius: 8px
}

.trade-desktop-light__middle__classic div.input-card .trade-light__card3 {
    padding: 8px
}

.trade-desktop-light__middle__create {
    width: calc((100% - 10px)/4);
    background-color: #f2f2f2;
    border-radius: 8px
}

.trade-desktop-light__middle__left {
    width: calc((100% - 10px)*.75);
    height: 100%;
    border-radius: 8px
}

.trade-desktop-light__middle__left__wrapper {
    height: calc(100% - 80px);
    margin-top: 10px
}

.trade-desktop-light__middle__left__panel {
    width: 33%;
    background-color: #f2f2f2;
    border-radius: 8px;
    margin-left: 10px
}

.trade-mobile-guide-light {
    width: 100vw;
    height: 100vh;
    background-color: #1a1a1ab2;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 16px
}

@media (min-width: 834px) {
    .trade-mobile-guide-light {
        padding: 0 30%;
        display: flex;
        align-items: center;
        justify-content: center
    }

    .trade-mobile-guide-light .switch3 {
        margin-bottom: 16px
    }
}

@media (min-width: 992px) {
    .trade-mobile-guide-light {
        padding: 0 36%
    }
}

.trade-mobile-guide-light__body {
    width: 100%;
    background-color: #fff;
    border-radius: 16px;
    padding-bottom: 24px;
    height: 80%
}

.trade-mobile-guide-light__body__wrapper {
    width: 100%;
    padding: 0 16px;
    height: calc(100% - 80px);
    overflow-y: scroll
}

.trade-mobile-guide-light__body__title {
    color: #1a1a1a
}

.trade-mobile-guide-light__body__options {
    width: 100%;
    margin-top: 12px
}

.trade-mobile-guide-light__body__options .tick-button {
    margin-left: 16px;
    width: unset
}

.trade-mobile-guide-light__body__image,
.trade-mobile-guide-light__body__image img {
    width: 100%
}

.trade-mobile-guide-light__body__desc {
    color: #1a1a1a
}

.trade-mobile-guide-light__body__desc div {
    width: 100%;
    text-align: right
}

.trade-mobile-guide-light__body div.close {
    padding-left: 16px;
    padding-top: 12px;
    width: 100%
}

.trade-mobile-guide-light__body div.close img {
    cursor: pointer
}

.trade-validation-popup-light {
    width: 100vw;
    height: 100vh;
    background-color: #1a1a1ab2;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 0 16px
}

@media (min-width: 834px) {
    .trade-validation-popup-light {
        padding: 0 30%
    }
}

@media (min-width: 992px) {
    .trade-validation-popup-light {
        padding: 0 38%
    }
}

.trade-validation-popup-light .element3-light {
    margin-top: 16px
}

.trade-validation-popup-light__body {
    width: 100%;
    background-color: #f2f2f2;
    border-radius: 16px;
    padding: 16px;
    max-height: 85%;
    overflow-y: scroll
}

.trade-validation-popup-light__close {
    width: 100%;
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 30
}

.trade-validation-popup-light__close img {
    cursor: pointer
}

.trade-validation-popup-light__head {
    width: 100%;
    color: #666
}

.trade-validation-popup-light__row1 {
    width: 100%;
    margin: 16px 0
}

.trade-validation-popup-light__row1__mode {
    height: 48px;
    border-radius: 0 5px 5px 0;
    background: #02a67f12;
    color: #02a67f;
    min-width: 110px;
    margin-left: -16px
}

.trade-validation-popup-light__row1__mode.sell {
    background: #ff5a5a12;
    color: #ff5a5a
}

.trade-validation-popup-light__row1__market {
    color: #1a1a1a
}

.trade-validation-popup-light__row1__market img {
    width: 24px;
    margin-left: 8px;
    height: 24px
}

.trade-validation-popup-light__row2 {
    width: 100%;
    margin-bottom: 12px
}

.trade-validation-popup-light__row2 div.key {
    color: #666
}

.trade-validation-popup-light__row2 div.val {
    color: #1a1a1a
}

.trade-validation-popup-light__row2 div.val span {
    margin-right: 4px
}

.trade-validation-popup-light__row3 {
    width: 100%;
    padding-top: 12px;
    border-top: 1px solid #d8d8d8
}

.trade-validation-popup-light__row3 div.key {
    color: #666
}

.trade-validation-popup-light__row3 div.val {
    color: #1a1a1a
}

.trade-validation-popup-light__row3 div.val span {
    margin-right: 4px
}

.trade-validation-popup-light__buttons {
    margin-top: 16px
}

.trade-validation-popup-light__buttons.sell .button1 {
    background-color: #ff5a5a
}

.trade-validation-popup-light__buttons .button1 {
    width: calc((100% - 16px)/2)
}

.trade-validation-popup-light__buttons .button2 {
    width: calc((100% - 16px)/2);
    background-color: #f2f2f2
}

.aboutus {
    width: 100vw
}

.aboutus__body {
    padding: 0 16px 40px
}

@media (min-width: 834px) {
    .aboutus__body {
        padding: 0 8%
    }
}

@media (min-width: 992px) {
    .aboutus__body {
        padding: 0 10%
    }
}

.aboutus__top {
    color: var(--body_text_primary);
    width: 100%
}

.aboutus__top img {
    width: 100%;
    margin-bottom: 48px
}

@media (min-width: 834px) {
    .aboutus__top {
        flex-direction: row-reverse;
        justify-content: space-between;
        margin-bottom: 80px
    }

    .aboutus__top img {
        width: 55%
    }

    .aboutus__top div {
        width: 40%
    }
}

@media (min-width: 992px) {
    .aboutus__top {
        margin-bottom: 120px
    }

    .aboutus__top img {
        width: 55%
    }

    .aboutus__top div {
        width: 37%
    }
}

@media (min-width: 1920px) {
    .aboutus__top img {
        width: 45%
    }
}

.aboutus__top__header {
    text-align: center;
    margin-bottom: 16px
}

@media (min-width: 834px) {
    .aboutus__top__header {
        font-size: 20px;
        text-align: right;
        margin-bottom: 24px
    }
}

@media (min-width: 992px) {
    .aboutus__top__header {
        font-size: 32px;
        margin-bottom: 32px
    }
}

.aboutus__middle {
    color: var(--body_text_primary);
    width: 100%;
    border-radius: 16px;
    background-color: var(--surface_primary);
    padding: 16px 16px 32px;
    margin-bottom: 48px;
    margin-top: 48px
}

.aboutus__middle span {
    margin-bottom: 16px;
    margin-top: 16px
}

@media (min-width: 834px) {
    .aboutus__middle {
        padding: 16px 16px 24px;
        margin-bottom: 64px;
        margin-top: 0
    }

    .aboutus__middle span {
        margin-bottom: 20px;
        margin-top: 20px;
        font-size: 16px
    }

    .aboutus__middle p {
        font-size: 12px
    }
}

@media (min-width: 992px) {
    .aboutus__middle {
        padding: 24px 24px 40px;
        margin-bottom: 88px
    }

    .aboutus__middle span {
        margin-bottom: 32px;
        margin-top: 32px;
        font-size: 20px
    }

    .aboutus__middle p {
        font-size: 14px
    }
}

.aboutus__text {
    color: var(--body_text_primary);
    margin-bottom: 16px
}

@media (min-width: 834px) {
    .aboutus__text {
        font-size: 16px
    }
}

@media (min-width: 992px) {
    .aboutus__text {
        margin-bottom: 72px;
        font-size: 20px
    }
}

@media (min-width: 834px) {
    .aboutus__cards {
        margin-bottom: 64px;
        flex-wrap: wrap;
        display: flex
    }

    .aboutus__cards .element4 {
        margin-left: 32px;
        height: 300px;
        background-color: unset !important
    }

    .aboutus__cards .element4-light {
        margin-left: 32px;
        height: 300px;
        background-color: unset
    }

    .aboutus__cards .element4:nth-child(2n) {
        margin-left: 0
    }
}

@media (min-width: 992px) {
    .aboutus__cards {
        justify-content: space-between
    }

    .aboutus__cards .element4,
    .aboutus__cards .element4-light {
        margin-left: 0;
        height: 350px
    }
}

@media (min-width: 834px) {
    .aboutus__cards__image {
        width: 72px;
        height: 72px;
        border-radius: 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-bottom: 24px
    }

    .aboutus__cards__image img {
        margin-bottom: 0 !important;
        width: 32px;
        height: 32px
    }
}

@media (min-width: 992px) {
    .aboutus__cards__image {
        width: 90px;
        height: 90px;
        border-radius: 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-bottom: 24px
    }

    .aboutus__cards__image img {
        margin-bottom: 0 !important;
        width: 40px;
        height: 40px
    }
}

.aboutus__cards__card {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    color: var(--body_text_primary);
    margin-bottom: 16px
}

.aboutus__cards__card div {
    width: calc(100% - 64px);
    display: flex;
    flex-direction: column
}

.aboutus__cards__card div.image {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: 12px
}

.aboutus__cards__card div.image img {
    margin-bottom: 0 !important
}

.aboutus__cards__card div span {
    margin-top: 16px;
    margin-bottom: 4px
}

.aboutus__cards__card div p {
    color: var(--card_desc)
}

.gift {
    width: 100vw
}

.gift .element7__body {
    background-color: unset;
    padding-right: 0;
    padding-left: 0
}

.gift__body {
    padding: 0 0 120px
}

@media (min-width: 992px) {
    .gift__body {
        padding: 56px 0% 100px
    }
}

.gift__top {
    width: 100%;
    color: #fff;
    padding: 0 16px
}

.gift__top img.image {
    width: 86%;
    margin-top: 24px
}

@media (min-width: 834px) {
    .gift__top {
        padding: 0 8%;
        align-items: center;
        flex-direction: row-reverse !important;
        justify-content: space-between !important;
        margin-top: 72px
    }

    .gift__top img.image {
        width: 44%;
        margin-top: 0
    }
}

@media (min-width: 992px) {
    .gift__top {
        padding: 0 10%
    }

    .gift__top img.image {
        width: 34%
    }
}

.gift__top__header {
    margin-top: 24px
}

@media (min-width: 834px) {
    .gift__top__header {
        margin-top: 0;
        align-items: flex-start;
        width: 100%
    }

    .gift__top__header :first-child {
        margin-bottom: 16px
    }

    .gift__top__header h5 {
        font-size: 24px
    }
}

@media (min-width: 992px) {
    .gift__top__header :first-child {
        margin-bottom: 24px
    }

    .gift__top__header h5 {
        font-size: 40px
    }
}

.gift__top__box {
    width: 100%
}

@media (min-width: 834px) {
    .gift__top__box {
        width: 50%
    }
}

@media (min-width: 992px) {
    .gift__top__box {
        align-items: flex-end;
        width: 35%;
        flex-direction: column;
        display: flex;
        justify-content: flex-end
    }
}

.gift__top__buttons {
    width: 100%
}

@media (min-width: 834px) {
    .gift__top__buttons {
        justify-content: flex-start
    }
}

.gift__top__buttons .button1 {
    width: calc(50% - 8px);
    margin-top: 40px
}

@media (min-width: 834px) {
    .gift__top__buttons .button1 {
        margin-top: 48px;
        width: 165px;
        margin-left: 16px
    }
}

@media (min-width: 992px) {
    .gift__top__buttons .button1 {
        margin-top: 56px
    }
}

.gift__pattern-left {
    position: absolute;
    left: 0;
    height: 100%
}

@media (min-width: 834px) {
    .gift__pattern-left {
        height: 70%;
        top: 0
    }
}

@media (min-width: 992px) {
    .gift__pattern-left {
        height: 100%;
        bottom: 0
    }
}

.gift__pattern-right {
    position: absolute;
    right: 0
}

@media (min-width: 834px) {
    .gift__pattern-right {
        height: 50%;
        top: 20%
    }
}

@media (min-width: 992px) {
    .gift__pattern-right {
        bottom: 0;
        height: unset
    }
}

.gift__cards {
    margin-top: 32px;
    width: 100%;
    background-color: #222;
    padding: 24px 0
}

@media (min-width: 834px) {
    .gift__cards {
        margin-top: 108px;
        padding-bottom: 56px
    }
}

@media (min-width: 992px) {
    .gift__cards {
        padding-bottom: 72px
    }
}

.gift__cards__empty {
    width: 100%;
    color: #fff;
    padding: 8px 16px
}

@media (min-width: 992px) {
    .gift__cards__empty {
        font-size: 16px
    }
}

.gift__cards__empty img {
    margin-top: 40px
}

@media (min-width: 992px) {
    .gift__cards__empty img {
        width: 100px
    }
}

.gift__cards__empty .button2 {
    margin-top: 40px;
    background-color: #222;
    width: 50%
}

@media (min-width: 834px) {
    .gift__cards__empty .button2 {
        width: 180px
    }
}

.gift__cards div.buttons {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    display: flex;
    color: #fff;
    width: 100%
}

.gift__cards div.buttons span.title {
    margin-right: 16px
}

@media (min-width: 992px) {
    .gift__cards div.buttons span.title {
        margin-right: 10%;
        font-size: 20px
    }
}

.gift__cards div.buttons span.more {
    text-align: left;
    margin-left: 16px
}

@media (min-width: 992px) {
    .gift__cards div.buttons span.more {
        margin-left: 10%;
        z-index: 11;
        font-size: 16px;
        font-weight: 700;
        cursor: pointer
    }
}

.gift__cards div.parent {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    display: flex
}

.gift__cards div.body {
    width: 100%;
    overflow-x: scroll;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow-y: hidden
}

@media (min-width: 992px) {
    .gift__cards div.body {
        z-index: 11
    }
}

.gift__cards div.list {
    width: 100%;
    display: flex;
    padding: 0 16px;
    overflow-x: auto;
    flex-direction: row
}

@media (min-width: 834px) {
    .gift__cards div.list {
        padding: 0 8%
    }
}

@media (min-width: 992px) {
    .gift__cards div.list {
        padding: 0 10%
    }
}

.gift__cards div.list div.wrapper {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    direction: rtl
}

.gift__cards div.list div.item {
    height: 100px;
    margin-left: 15px;
    overflow: hidden;
    border-radius: 10px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    cursor: pointer
}

.gift__cards div.list div.item.load {
    width: 200px
}

@media (min-width: 992px) {
    .gift__cards div.list div.item.load {
        width: 450px
    }
}

@media (min-width: 992px) {
    .gift__cards div.list div.item {
        height: 158px;
        margin-left: 30px;
        border-radius: 20px
    }
}

.gift__cards div.list div.item img.bg {
    height: 100px;
    border-radius: 10px
}

@media (min-width: 992px) {
    .gift__cards div.list div.item img.bg {
        height: 158px;
        border-radius: 20px
    }
}

.gift__cards div.list div.item div.used {
    position: absolute;
    color: #fff;
    top: 12px;
    right: 0;
    width: 72px
}

@media (min-width: 834px) {
    .gift__cards div.list div.item div.used {
        width: 88px
    }
}

.gift__cards div.list div.item div.used div {
    width: 100%;
    padding-right: 8px
}

@media (min-width: 834px) {
    .gift__cards div.list div.item div.used div {
        padding-right: 12px
    }
}

.gift__cards div.list div.item div.used img {
    position: absolute;
    right: 0;
    width: 100%
}

.gift__cards div.list div.item div.amount {
    color: #282563;
    text-align: center
}

@media (min-width: 992px) {
    .gift__cards div.list div.item div.amount {
        font-size: 16px
    }
}

.gift__cards div.list div.item div.curr {
    color: #282563;
    text-align: center
}

@media (min-width: 992px) {
    .gift__cards div.list div.item div.curr {
        font-size: 16px
    }
}

.gift__cards div.list div.item div.bottom {
    position: absolute;
    bottom: 5px
}

.gift__cards div.list div.item div.card-title {
    color: #282563;
    transform: rotate(-90deg);
    margin-top: 10px
}

@media (min-width: 992px) {
    .gift__cards div.list div.item div.card-title {
        font-size: 20px;
        font-weight: 700
    }
}

.gift-cards {
    width: 100vw;
    height: 100vh;
    overflow-y: scroll
}

.gift-cards__body {
    padding: 16px 0 40px
}

@media (min-width: 834px) {
    .gift-cards__body {
        padding: 26px 8%
    }
}

@media (min-width: 992px) {
    .gift-cards__body {
        padding: 56px 10% 100px
    }
}

.gift-cards__cards {
    width: 100%
}

.gift-cards__cards span.title {
    color: #fff;
    margin-bottom: 16px
}

@media (min-width: 834px) {
    .gift-cards__cards span.title {
        font-size: 18px;
        font-weight: 700
    }
}

.gift-cards__cards__list {
    width: 100%;
    width: 60%
}

@media (min-width: 834px) {
    .gift-cards__cards__list {
        width: 84%;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: space-between
    }
}

.gift-cards__cards__list div.item {
    width: 100%;
    margin-bottom: 16px;
    border-radius: 12px;
    cursor: pointer
}

.gift-cards__cards__list div.item.load {
    width: 200px
}

@media (min-width: 992px) {
    .gift-cards__cards__list div.item.load {
        width: 450px
    }
}

@media (min-width: 834px) {
    .gift-cards__cards__list div.item {
        width: calc((100% - 32px) / 3);
        border-radius: 20px
    }
}

@media (min-width: 992px) {
    .gift-cards__cards__list div.item {
        width: calc((100% - 16px)/2)
    }
}

.gift-cards__cards__list div.item img.bg {
    width: 100%;
    border-radius: 10px
}

@media (min-width: 992px) {
    .gift-cards__cards__list div.item img.bg {
        width: 100%;
        border-radius: 20px
    }
}

.gift-cards__cards__list div.item div.used {
    position: absolute;
    color: #fff;
    top: 12px;
    right: 0;
    width: 72px
}

@media (min-width: 992px) {
    .gift-cards__cards__list div.item div.used {
        width: 88px
    }
}

.gift-cards__cards__list div.item div.used div {
    width: 100%;
    padding-right: 8px
}

@media (min-width: 992px) {
    .gift-cards__cards__list div.item div.used div {
        padding-right: 12px
    }
}

.gift-cards__cards__list div.item div.used img {
    position: absolute;
    right: 0;
    width: 100%
}

.gift-cards__cards__list div.item div.amount {
    color: #282563;
    text-align: center
}

@media (min-width: 992px) {
    .gift-cards__cards__list div.item div.amount {
        font-size: 16px
    }
}

.gift-cards__cards__list div.item div.curr {
    color: #282563;
    text-align: center
}

@media (min-width: 992px) {
    .gift-cards__cards__list div.item div.curr {
        font-size: 16px
    }
}

.gift-cards__cards__list div.item div.bottom {
    position: absolute;
    bottom: 5px
}

.gift-cards__cards__list div.item div.card-title {
    color: #282563;
    transform: rotate(-90deg);
    margin-top: 10px
}

@media (min-width: 992px) {
    .gift-cards__cards__list div.item div.card-title {
        font-size: 20px;
        font-weight: 700
    }
}

.gift-cards button.button1 {
    width: 50%
}

@media (min-width: 834px) {
    .gift-cards button.button1 {
        width: 160px
    }
}

.create-gift {
    width: 100vw;
    height: 100vh;
    overflow-y: scroll
}

.create-gift__body {
    padding: 40px 16px 120px
}

@media (min-width: 834px) {
    .create-gift__body {
        padding: 26px 0 100px
    }
}

@media (min-width: 992px) {
    .create-gift__body {
        padding: 56px 0% 200px
    }
}

.create-gift__top {
    width: 100%;
    color: #fff
}

@media (min-width: 834px) {
    .create-gift__top {
        flex-direction: row !important;
        align-items: center;
        justify-content: space-between !important;
        padding: 0 8%
    }

    .create-gift__top span {
        margin-bottom: 24px;
        font-size: 24px;
        font-weight: 700
    }

    .create-gift__top div.box {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        width: 40%
    }
}

@media (min-width: 992px) {
    .create-gift__top {
        padding: 0 10%
    }

    .create-gift__top span {
        margin-bottom: 32px;
        font-size: 40px
    }
}

.create-gift__top div.selected {
    width: 100%
}

.create-gift__top div.selected img {
    width: 100%;
    border-radius: 16px
}

@media (min-width: 834px) {
    .create-gift__top div.selected {
        width: 40%
    }
}

.create-gift__top div.title {
    position: absolute;
    bottom: 8px;
    right: 8px
}

.create-gift__list {
    width: 100%;
    overflow-x: scroll;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow-y: hidden;
    margin-bottom: 32px
}

@media (min-width: 992px) {
    .create-gift__list {
        z-index: 11
    }
}

.create-gift__list div.list {
    display: flex;
    overflow-x: auto;
    flex-direction: row
}

.create-gift__list div.list div.wrapper {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    direction: rtl
}

.create-gift__list div.list div.wrapper button {
    background-color: unset;
    outline: unset;
    border: unset;
    height: 60px;
    margin-left: 16px
}

@media (min-width: 834px) {
    .create-gift__list div.list div.wrapper button {
        height: 108px;
        margin-top: 64px
    }
}

@media (min-width: 992px) {
    .create-gift__list div.list div.wrapper button {
        height: 158px
    }
}

.create-gift__list div.list div.wrapper button img {
    height: 44px;
    overflow: hidden;
    border-radius: 10px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    cursor: pointer
}

@media (min-width: 834px) {
    .create-gift__list div.list div.wrapper button img {
        height: 108px
    }
}

@media (min-width: 992px) {
    .create-gift__list div.list div.wrapper button img {
        height: 158px
    }
}

.create-gift__fields {
    align-items: flex-start !important;
    width: 100%
}

@media (min-width: 834px) {
    .create-gift__fields {
        padding: 0 28%;
        margin-top: 64px
    }
}

@media (min-width: 992px) {
    .create-gift__fields {
        padding: 0 36%;
        margin-top: 64px
    }
}

.create-gift__fields__wrapper {
    width: 100%
}

@media (min-width: 834px) {
    .create-gift__fields__wrapper {
        background-color: #222;
        border-radius: 16px;
        padding: 24px 16px
    }
}

@media (min-width: 992px) {
    .create-gift__fields__wrapper {
        padding: 30px
    }
}

.create-gift__fields .input1,
.create-gift__fields .dropdown1 {
    margin-top: 8px
}

.create-gift__fields span.texts {
    color: #fff
}

.create-gift__fields div.texts {
    width: 100%
}

.create-gift__fields div.texts span {
    color: #fff
}

.create-gift__fields div.texts span.key {
    color: #b2b2b2
}

.create-gift__pattern-left {
    position: absolute;
    left: 0;
    bottom: 0
}

@media (min-width: 834px) {
    .create-gift__pattern-left {
        width: 200px
    }
}

@media (min-width: 992px) {
    .create-gift__pattern-left {
        width: unset
    }
}

.create-gift__pattern-right {
    position: absolute;
    right: 0
}

@media (min-width: 834px) {
    .create-gift__pattern-right {
        width: 70%;
        bottom: 50px
    }
}

@media (min-width: 992px) {
    .create-gift__pattern-right {
        width: unset;
        bottom: 0
    }
}

.gift-detail {
    width: 100vw;
    height: 100vh;
    overflow-y: scroll
}

.gift-detail__body {
    padding: 40px 16px
}

@media (min-width: 834px) {
    .gift-detail__body {
        flex-direction: row !important;
        justify-content: space-between !important;
        padding: 26px 8% !important
    }
}

@media (min-width: 992px) {
    .gift-detail__body {
        padding: 56px 10% 100px !important
    }
}

.gift-detail__body div.selected {
    width: 100%
}

.gift-detail__body div.selected img {
    width: 100%;
    border-radius: 16px
}

@media (min-width: 992px) {
    .gift-detail__body div.selected {
        width: 60%
    }
}

.gift-detail__body div.title {
    position: absolute;
    bottom: 8px;
    right: 8px
}

.gift-detail__top {
    width: 100%
}

@media (min-width: 834px) {
    .gift-detail__top {
        width: 50%;
        min-height: 300px;
        display: flex;
        flex-direction: column !important;
        align-items: flex-start;
        justify-content: space-between !important
    }

    .gift-detail__top img {
        margin-top: 20px
    }

    .gift-detail__top span {
        margin-bottom: 24px;
        font-size: 24px;
        font-weight: 700
    }

    .gift-detail__top div.box {
        color: #fff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        width: 100%
    }

    .gift-detail__top div.box p.subtitle {
        font-size: 12px;
        font-weight: 400
    }
}

@media (min-width: 992px) {
    .gift-detail__top span {
        margin-bottom: 32px;
        font-size: 24px;
        font-weight: 700
    }

    .gift-detail__top div.box p.subtitle {
        font-size: 18px;
        font-weight: 400;
        margin-bottom: 48px
    }
}

.gift-detail__middle {
    color: #fff;
    margin-top: 32px
}

@media (min-width: 834px) {
    .gift-detail__middle {
        height: 100% !important;
        width: 40%;
        margin-top: 0;
        border-radius: 16px;
        padding: 24px 16px;
        background-color: #222
    }
}

@media (min-width: 992px) {
    .gift-detail__middle {
        width: 30%
    }
}

.gift-detail__middle div {
    display: flex
}

.gift-detail__middle div.key {
    flex-direction: row;
    align-items: center;
    margin-bottom: 12px;
    color: #b2b2b2
}

.gift-detail__middle div.key span {
    margin-right: 8px
}

.gift-detail__middle div.amount {
    flex-direction: row;
    margin-bottom: 32px;
    cursor: pointer
}

.gift-detail__middle div.amount span {
    margin-right: 8px
}

.gift-detail__middle div.sends {
    flex-direction: column;
    align-items: center;
    color: #fff
}

.gift-detail__middle div.sends span {
    margin-bottom: 18px
}

.gift-detail__middle div.methods {
    flex-direction: row;
    color: #4ef09d;
    justify-content: space-between;
    width: 50%
}

.gift-detail__middle div.methods div {
    cursor: pointer;
    flex-direction: column;
    align-items: center
}

.gift-detail__middle div.methods div img {
    width: 24px;
    height: 24px;
    margin-bottom: 10px
}

.receive-gift {
    width: 100vw;
    height: 100vh;
    overflow-y: scroll
}

.receive-gift__body {
    padding: 40px 16px
}

@media (min-width: 834px) {
    .receive-gift__body {
        padding: 26px 8%
    }
}

@media (min-width: 992px) {
    .receive-gift__body {
        padding: 56px 10% 100px
    }
}

.receive-gift__page1 {
    width: 100%;
    color: #fff
}

.receive-gift__page1 img {
    margin-bottom: 30px
}

.receive-gift__page1 span {
    align-self: right;
    width: 100%
}

.receive-gift__page1 span.texts {
    margin-bottom: 8px
}

.receive-gift__page1 div.input1 {
    margin-bottom: 200px
}

@media (min-width: 834px) {
    .receive-gift__page1 div.input1 {
        margin-bottom: 0
    }
}

.receive-gift__page1 div.box {
    width: 100%
}

.receive-gift__page1 div.box div.inputs {
    display: flex;
    flex-direction: column;
    width: 100%
}

@media (min-width: 834px) {
    .receive-gift__page1 {
        margin-top: 64px;
        flex-direction: row-reverse !important;
        justify-content: space-between !important;
        align-items: flex-start !important;
        margin-bottom: 100px
    }

    .receive-gift__page1 img {
        width: 40%
    }

    .receive-gift__page1 div.box {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        width: 45%;
        align-items: flex-end;
        text-align: right
    }

    .receive-gift__page1 div.box span.head {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 24px
    }

    .receive-gift__page1 div.box p.subtitle {
        width: 100%;
        margin-bottom: 32px;
        text-align: right;
        font-size: 12px;
        font-weight: 400;
        margin-right: 0;
        align-self: right
    }

    .receive-gift__page1 div.box div.inputs {
        background-color: #222;
        padding: 24px 16px;
        border-radius: 16px
    }
}

@media (min-width: 992px) {
    .receive-gift__page1 img {
        width: 30%
    }

    .receive-gift__page1 div.box {
        width: 30% !important
    }
}

@media (min-width: 834px) {
    .receive-gift__page2 {
        display: flex;
        margin-top: 64px;
        flex-direction: row-reverse !important;
        justify-content: space-between !important;
        align-items: flex-start !important;
        margin-bottom: 100px;
        width: 100%
    }
}

.receive-gift__page2 div.selected {
    width: 100%
}

.receive-gift__page2 div.selected img {
    width: 100%;
    border-radius: 16px
}

@media (min-width: 834px) {
    .receive-gift__page2 div.selected {
        width: 50%
    }
}

.receive-gift__page2 div.title {
    position: absolute;
    bottom: 8px;
    right: 8px
}

.receive-gift__page2 div.texts {
    display: flex;
    margin-top: 26px;
    flex-direction: column;
    justify-content: space-between
}

@media (min-width: 834px) {
    .receive-gift__page2 div.texts {
        margin-top: 0;
        width: 45%;
        margin-bottom: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: flex-start;
        color: #fff
    }

    .receive-gift__page2 div.texts span.head {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 24px;
        text-align: right;
        width: 100%
    }

    .receive-gift__page2 div.texts p.subtitle {
        width: 100%;
        margin-bottom: 32px;
        text-align: right;
        font-size: 12px;
        font-weight: 400;
        margin-right: 0;
        align-self: right
    }
}

@media (min-width: 992px) {
    .receive-gift__page2 div.texts span.head {
        font-size: 32px;
        font-weight: 700
    }
}

@media (min-width: 834px) {
    .receive-gift__page2 div.texts button.button1 {
        width: 50%;
        align-self: flex-start
    }
}

@media (min-width: 992px) {
    .receive-gift__page2 div.texts button.button1 {
        width: 30%
    }
}

.receive-gift__page2 div.texts p.desktop-title {
    text-align: right;
    width: 100%;
    margin-bottom: 16px
}

.receive-gift__page2 div.texts div.titles {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 200px
}

@media (min-width: 834px) {
    .receive-gift__page2 div.texts div.titles {
        margin-bottom: 0;
        align-self: flex-start;
        width: 50%
    }
}

@media (min-width: 992px) {
    .receive-gift__page2 div.texts div.titles {
        width: 30%
    }
}

.receive-gift__page2 div.texts div.key {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: #b2b2b2
}

.receive-gift__page2 div.texts div.key span {
    margin-right: 8px
}

.receive-gift__page2 div.texts div.amount {
    flex-direction: row
}

.receive-gift__page2 div.texts div.amount span {
    color: #fff;
    margin-right: 8px
}

.gift-light {
    width: 100vw;
    background-color: #e9e9e9
}

.gift-light .element7__body {
    background-color: unset;
    padding-right: 0;
    padding-left: 0
}

.gift-light__body {
    padding: 0 0 120px
}

@media (min-width: 992px) {
    .gift-light__body {
        padding: 56px 0% 100px
    }
}

.gift-light__top {
    width: 100%;
    color: #1a1a1a;
    padding: 0 16px
}

.gift-light__top img.image {
    width: 86%;
    margin-top: 24px
}

@media (min-width: 834px) {
    .gift-light__top {
        padding: 0 8%;
        align-items: center;
        flex-direction: row-reverse !important;
        justify-content: space-between !important;
        margin-top: 72px
    }

    .gift-light__top img.image {
        width: 44%;
        margin-top: 0
    }
}

@media (min-width: 992px) {
    .gift-light__top {
        padding: 0 10%
    }

    .gift-light__top img.image {
        width: 34%
    }
}

.gift-light__top__header {
    margin-top: 24px
}

@media (min-width: 834px) {
    .gift-light__top__header {
        margin-top: 0;
        align-items: flex-start;
        width: 100%
    }

    .gift-light__top__header :first-child {
        margin-bottom: 16px
    }

    .gift-light__top__header h5 {
        font-size: 24px
    }
}

@media (min-width: 992px) {
    .gift-light__top__header :first-child {
        margin-bottom: 24px
    }

    .gift-light__top__header h5 {
        font-size: 40px
    }
}

.gift-light__top__box {
    width: 100%
}

@media (min-width: 834px) {
    .gift-light__top__box {
        width: 50%
    }
}

@media (min-width: 992px) {
    .gift-light__top__box {
        align-items: flex-end;
        width: 35%;
        flex-direction: column;
        display: flex;
        justify-content: flex-end
    }
}

.gift-light__top__buttons {
    width: 100%
}

@media (min-width: 834px) {
    .gift-light__top__buttons {
        justify-content: flex-start
    }
}

.gift-light__top__buttons .button1 {
    width: calc(50% - 8px);
    margin-top: 40px
}

@media (min-width: 834px) {
    .gift-light__top__buttons .button1 {
        margin-top: 48px;
        width: 165px;
        margin-left: 16px
    }
}

@media (min-width: 992px) {
    .gift-light__top__buttons .button1 {
        margin-top: 56px
    }
}

.gift-light__pattern-left {
    position: absolute;
    left: 0;
    height: 100%
}

@media (min-width: 834px) {
    .gift-light__pattern-left {
        height: 70%;
        top: 0
    }
}

@media (min-width: 992px) {
    .gift-light__pattern-left {
        height: 100%;
        bottom: 0
    }
}

.gift-light__pattern-right {
    position: absolute;
    right: 0
}

@media (min-width: 834px) {
    .gift-light__pattern-right {
        height: 50%;
        top: 20%
    }
}

@media (min-width: 992px) {
    .gift-light__pattern-right {
        bottom: 0;
        height: unset
    }
}

.gift-light__cards {
    margin-top: 32px;
    width: 100%;
    background-color: #f2f2f2;
    padding: 24px 0
}

@media (min-width: 834px) {
    .gift-light__cards {
        margin-top: 108px;
        padding-bottom: 56px;
        background-color: #e1e1e1
    }
}

@media (min-width: 992px) {
    .gift-light__cards {
        padding-bottom: 72px
    }
}

.gift-light__cards__empty {
    width: 100%;
    color: #1a1a1a;
    padding: 8px 16px
}

@media (min-width: 992px) {
    .gift-light__cards__empty {
        font-size: 16px
    }
}

.gift-light__cards__empty img {
    margin-top: 40px
}

@media (min-width: 992px) {
    .gift-light__cards__empty img {
        width: 100px
    }
}

.gift-light__cards__empty .button2 {
    margin-top: 40px;
    width: 50%
}

@media (min-width: 834px) {
    .gift-light__cards__empty .button2 {
        width: 180px
    }
}

.gift-light__cards div.buttons {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    display: flex;
    color: #1a1a1a;
    width: 100%
}

.gift-light__cards div.buttons span.title {
    margin-right: 16px
}

@media (min-width: 992px) {
    .gift-light__cards div.buttons span.title {
        margin-right: 10%;
        font-size: 20px
    }
}

.gift-light__cards div.buttons span.more {
    text-align: left;
    margin-left: 16px;
    color: #02a67f
}

@media (min-width: 992px) {
    .gift-light__cards div.buttons span.more {
        margin-left: 10%;
        z-index: 11;
        font-size: 16px;
        font-weight: 700;
        cursor: pointer
    }
}

.gift-light__cards div.parent {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    display: flex
}

.gift-light__cards div.body {
    width: 100%;
    overflow-x: scroll;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow-y: hidden
}

@media (min-width: 992px) {
    .gift-light__cards div.body {
        z-index: 11
    }
}

.gift-light__cards div.list {
    width: 100%;
    display: flex;
    padding: 0 16px;
    overflow-x: auto;
    flex-direction: row
}

@media (min-width: 834px) {
    .gift-light__cards div.list {
        padding: 0 8%
    }
}

@media (min-width: 992px) {
    .gift-light__cards div.list {
        padding: 0 10%
    }
}

.gift-light__cards div.list div.wrapper {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    direction: rtl
}

.gift-light__cards div.list div.item {
    height: 100px;
    margin-left: 15px;
    overflow: hidden;
    border-radius: 10px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    cursor: pointer
}

.gift-light__cards div.list div.item.load {
    width: 200px
}

@media (min-width: 992px) {
    .gift-light__cards div.list div.item.load {
        width: 450px
    }
}

@media (min-width: 992px) {
    .gift-light__cards div.list div.item {
        height: 158px;
        margin-left: 30px;
        border-radius: 20px
    }
}

.gift-light__cards div.list div.item img.bg {
    height: 100px;
    border-radius: 10px
}

@media (min-width: 992px) {
    .gift-light__cards div.list div.item img.bg {
        height: 158px;
        border-radius: 20px
    }
}

.gift-light__cards div.list div.item div.used {
    position: absolute;
    color: #fff;
    top: 12px;
    right: 0;
    width: 72px
}

@media (min-width: 834px) {
    .gift-light__cards div.list div.item div.used {
        width: 88px
    }
}

.gift-light__cards div.list div.item div.used div {
    width: 100%;
    padding-right: 8px
}

@media (min-width: 834px) {
    .gift-light__cards div.list div.item div.used div {
        padding-right: 12px
    }
}

.gift-light__cards div.list div.item div.used img {
    position: absolute;
    right: 0;
    width: 100%
}

.gift-light__cards div.list div.item div.amount {
    color: #282563;
    text-align: center
}

@media (min-width: 992px) {
    .gift-light__cards div.list div.item div.amount {
        font-size: 16px
    }
}

.gift-light__cards div.list div.item div.curr {
    color: #282563;
    text-align: center
}

@media (min-width: 992px) {
    .gift-light__cards div.list div.item div.curr {
        font-size: 16px
    }
}

.gift-light__cards div.list div.item div.bottom {
    position: absolute;
    bottom: 5px
}

.gift-light__cards div.list div.item div.card-title {
    color: #282563;
    transform: rotate(-90deg);
    margin-top: 10px
}

@media (min-width: 992px) {
    .gift-light__cards div.list div.item div.card-title {
        font-size: 20px;
        font-weight: 700
    }
}

.gift-cards-light {
    width: 100vw;
    height: 100vh;
    overflow-y: scroll;
    background-color: #e9e9e9
}

.gift-cards-light__body {
    padding: 16px 0 40px
}

@media (min-width: 834px) {
    .gift-cards-light__body {
        padding: 26px 8%
    }
}

@media (min-width: 992px) {
    .gift-cards-light__body {
        padding: 56px 10% 100px
    }
}

.gift-cards-light__cards {
    width: 100%
}

.gift-cards-light__cards span.title {
    color: #1a1a1a;
    margin-bottom: 16px
}

@media (min-width: 834px) {
    .gift-cards-light__cards span.title {
        font-size: 18px;
        font-weight: 700
    }
}

.gift-cards-light__cards__list {
    width: 100%;
    width: 60%
}

@media (min-width: 834px) {
    .gift-cards-light__cards__list {
        width: 84%;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: space-between
    }
}

.gift-cards-light__cards__list div.item {
    width: 100%;
    margin-bottom: 16px;
    border-radius: 12px;
    cursor: pointer
}

.gift-cards-light__cards__list div.item.load {
    width: 200px
}

@media (min-width: 992px) {
    .gift-cards-light__cards__list div.item.load {
        width: 450px
    }
}

@media (min-width: 834px) {
    .gift-cards-light__cards__list div.item {
        width: calc((100% - 32px) / 3);
        border-radius: 20px
    }
}

@media (min-width: 992px) {
    .gift-cards-light__cards__list div.item {
        width: calc((100% - 16px)/2)
    }
}

.gift-cards-light__cards__list div.item img.bg {
    width: 100%;
    border-radius: 10px
}

@media (min-width: 992px) {
    .gift-cards-light__cards__list div.item img.bg {
        width: 100%;
        border-radius: 20px
    }
}

.gift-cards-light__cards__list div.item div.used {
    position: absolute;
    color: #fff;
    top: 12px;
    right: 0;
    width: 72px
}

@media (min-width: 992px) {
    .gift-cards-light__cards__list div.item div.used {
        width: 88px
    }
}

.gift-cards-light__cards__list div.item div.used div {
    width: 100%;
    padding-right: 8px
}

@media (min-width: 992px) {
    .gift-cards-light__cards__list div.item div.used div {
        padding-right: 12px
    }
}

.gift-cards-light__cards__list div.item div.used img {
    position: absolute;
    right: 0;
    width: 100%
}

.gift-cards-light__cards__list div.item div.amount {
    color: #282563;
    text-align: center
}

@media (min-width: 992px) {
    .gift-cards-light__cards__list div.item div.amount {
        font-size: 16px
    }
}

.gift-cards-light__cards__list div.item div.curr {
    color: #282563;
    text-align: center
}

@media (min-width: 992px) {
    .gift-cards-light__cards__list div.item div.curr {
        font-size: 16px
    }
}

.gift-cards-light__cards__list div.item div.bottom {
    position: absolute;
    bottom: 5px
}

.gift-cards-light__cards__list div.item div.card-title {
    color: #282563;
    transform: rotate(-90deg);
    margin-top: 10px
}

@media (min-width: 992px) {
    .gift-cards-light__cards__list div.item div.card-title {
        font-size: 20px;
        font-weight: 700
    }
}

.gift-cards-light button.button1 {
    width: 50%
}

@media (min-width: 834px) {
    .gift-cards-light button.button1 {
        width: 160px
    }
}

.create-gift-light {
    width: 100vw;
    height: 100vh;
    overflow-y: scroll;
    background-color: #e9e9e9
}

.create-gift-light__body {
    padding: 40px 16px 120px
}

@media (min-width: 834px) {
    .create-gift-light__body {
        padding: 26px 0 100px
    }
}

@media (min-width: 992px) {
    .create-gift-light__body {
        padding: 56px 0% 200px
    }
}

.create-gift-light__top {
    width: 100%;
    color: #1a1a1a
}

@media (min-width: 834px) {
    .create-gift-light__top {
        flex-direction: row !important;
        align-items: center;
        justify-content: space-between !important;
        padding: 0 8%
    }

    .create-gift-light__top span {
        margin-bottom: 24px;
        font-size: 24px;
        font-weight: 700
    }

    .create-gift-light__top div.box {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        width: 40%
    }
}

@media (min-width: 992px) {
    .create-gift-light__top {
        padding: 0 10%
    }

    .create-gift-light__top span {
        margin-bottom: 32px;
        font-size: 40px
    }
}

.create-gift-light__top div.selected {
    width: 100%
}

.create-gift-light__top div.selected img {
    width: 100%;
    border-radius: 16px
}

@media (min-width: 834px) {
    .create-gift-light__top div.selected {
        width: 40%
    }
}

.create-gift-light__top div.title {
    position: absolute;
    bottom: 8px;
    right: 8px
}

.create-gift-light__list {
    width: 100%;
    overflow-x: scroll;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow-y: hidden;
    margin-bottom: 32px
}

@media (min-width: 992px) {
    .create-gift-light__list {
        z-index: 11
    }
}

.create-gift-light__list div.list {
    display: flex;
    overflow-x: auto;
    flex-direction: row
}

.create-gift-light__list div.list div.wrapper {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    direction: rtl
}

.create-gift-light__list div.list div.wrapper button {
    background-color: unset;
    outline: unset;
    border: unset;
    height: 60px;
    margin-left: 16px
}

@media (min-width: 834px) {
    .create-gift-light__list div.list div.wrapper button {
        height: 108px;
        margin-top: 64px
    }
}

@media (min-width: 992px) {
    .create-gift-light__list div.list div.wrapper button {
        height: 158px
    }
}

.create-gift-light__list div.list div.wrapper button img {
    height: 44px;
    overflow: hidden;
    border-radius: 10px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    cursor: pointer
}

@media (min-width: 834px) {
    .create-gift-light__list div.list div.wrapper button img {
        height: 108px
    }
}

@media (min-width: 992px) {
    .create-gift-light__list div.list div.wrapper button img {
        height: 158px
    }
}

.create-gift-light__fields {
    align-items: flex-start !important;
    width: 100%
}

@media (min-width: 834px) {
    .create-gift-light__fields {
        padding: 0 28%;
        margin-top: 64px
    }
}

@media (min-width: 992px) {
    .create-gift-light__fields {
        padding: 0 36%;
        margin-top: 64px
    }
}

.create-gift-light__fields__wrapper {
    width: 100%
}

@media (min-width: 834px) {
    .create-gift-light__fields__wrapper {
        background-color: #f2f2f2;
        border-radius: 16px;
        padding: 24px 16px
    }
}

@media (min-width: 992px) {
    .create-gift-light__fields__wrapper {
        padding: 30px
    }
}

.create-gift-light__fields .input1-light,
.create-gift-light__fields .dropdown1 {
    margin-top: 8px
}

.create-gift-light__fields span.texts {
    color: #1a1a1a
}

.create-gift-light__fields div.texts {
    width: 100%
}

.create-gift-light__fields div.texts span {
    color: #1a1a1a
}

.create-gift-light__fields div.texts span.key {
    color: #666
}

.create-gift-light__pattern-left {
    position: absolute;
    left: 0;
    bottom: 0
}

@media (min-width: 834px) {
    .create-gift-light__pattern-left {
        width: 200px
    }
}

@media (min-width: 992px) {
    .create-gift-light__pattern-left {
        width: unset
    }
}

.create-gift-light__pattern-right {
    position: absolute;
    right: 0
}

@media (min-width: 834px) {
    .create-gift-light__pattern-right {
        width: 70%;
        bottom: 50px
    }
}

@media (min-width: 992px) {
    .create-gift-light__pattern-right {
        width: unset;
        bottom: 0
    }
}

.gift-detail-light {
    width: 100vw;
    height: 100vh;
    overflow-y: scroll;
    background-color: #e9e9e9
}

.gift-detail-light__body {
    padding: 40px 16px
}

@media (min-width: 834px) {
    .gift-detail-light__body {
        flex-direction: row !important;
        justify-content: space-between !important;
        padding: 26px 8% !important
    }
}

@media (min-width: 992px) {
    .gift-detail-light__body {
        padding: 56px 10% 100px !important
    }
}

.gift-detail-light__body div.selected {
    width: 100%
}

.gift-detail-light__body div.selected img {
    width: 100%;
    border-radius: 16px
}

@media (min-width: 992px) {
    .gift-detail-light__body div.selected {
        width: 60%
    }
}

.gift-detail-light__body div.title {
    position: absolute;
    bottom: 8px;
    right: 8px
}

.gift-detail-light__top {
    width: 100%
}

@media (min-width: 834px) {
    .gift-detail-light__top {
        width: 50%;
        min-height: 300px;
        display: flex;
        flex-direction: column !important;
        align-items: flex-start;
        justify-content: space-between !important
    }

    .gift-detail-light__top img {
        margin-top: 20px
    }

    .gift-detail-light__top span {
        margin-bottom: 24px;
        font-size: 24px;
        font-weight: 700
    }

    .gift-detail-light__top div.box {
        color: #1a1a1a;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        width: 100%
    }

    .gift-detail-light__top div.box p.subtitle {
        font-size: 12px;
        font-weight: 400
    }
}

@media (min-width: 992px) {
    .gift-detail-light__top span {
        margin-bottom: 32px;
        font-size: 24px;
        font-weight: 700
    }

    .gift-detail-light__top div.box p.subtitle {
        font-size: 18px;
        font-weight: 400;
        margin-bottom: 48px
    }
}

.gift-detail-light__middle {
    color: #1a1a1a;
    margin-top: 32px
}

@media (min-width: 834px) {
    .gift-detail-light__middle {
        height: 100% !important;
        width: 40%;
        margin-top: 0;
        border-radius: 16px;
        padding: 24px 16px;
        background-color: #f2f2f2
    }
}

@media (min-width: 992px) {
    .gift-detail-light__middle {
        width: 30%
    }
}

.gift-detail-light__middle div {
    display: flex
}

.gift-detail-light__middle div.key {
    flex-direction: row;
    align-items: center;
    margin-bottom: 12px;
    color: #666
}

.gift-detail-light__middle div.key span {
    margin-right: 8px
}

.gift-detail-light__middle div.amount {
    flex-direction: row;
    margin-bottom: 32px;
    cursor: pointer
}

.gift-detail-light__middle div.amount span {
    margin-right: 8px
}

.gift-detail-light__middle div.sends {
    flex-direction: column;
    align-items: center;
    color: #1a1a1a
}

.gift-detail-light__middle div.sends span {
    margin-bottom: 18px
}

.gift-detail-light__middle div.methods {
    flex-direction: row;
    color: #02a67f;
    justify-content: space-between;
    width: 50%
}

.gift-detail-light__middle div.methods div {
    cursor: pointer;
    flex-direction: column;
    align-items: center
}

.gift-detail-light__middle div.methods div img {
    width: 24px;
    height: 24px;
    margin-bottom: 10px
}

.receive-gift-light {
    width: 100vw;
    height: 100vh;
    overflow-y: scroll;
    background-color: #e9e9e9
}

.receive-gift-light__body {
    padding: 32px 16px 40px
}

@media (min-width: 834px) {
    .receive-gift-light__body {
        padding: 26px 8%
    }
}

@media (min-width: 992px) {
    .receive-gift-light__body {
        padding: 56px 10% 88px
    }
}

.receive-gift-light__page1 {
    width: 100%;
    color: #1a1a1a
}

.receive-gift-light__page1 img {
    margin-bottom: 30px;
    width: 70%
}

.receive-gift-light__page1 span {
    align-self: right;
    width: 100%
}

.receive-gift-light__page1 span.texts {
    margin-bottom: 8px
}

.receive-gift-light__page1 div.input1-light {
    margin-bottom: 180px
}

@media (min-width: 834px) {
    .receive-gift-light__page1 div.input1-light {
        margin-bottom: 0
    }
}

.receive-gift-light__page1 div.box {
    width: 100%
}

.receive-gift-light__page1 div.box div.inputs {
    display: flex;
    flex-direction: column;
    width: 100%
}

@media (min-width: 834px) {
    .receive-gift-light__page1 {
        margin-top: 64px;
        flex-direction: row-reverse !important;
        justify-content: space-between !important;
        align-items: flex-start !important;
        margin-bottom: 100px
    }

    .receive-gift-light__page1 img {
        width: 40%
    }

    .receive-gift-light__page1 div.box {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        width: 45%;
        align-items: flex-end;
        text-align: right
    }

    .receive-gift-light__page1 div.box span.head {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 24px
    }

    .receive-gift-light__page1 div.box p.subtitle {
        width: 100%;
        margin-bottom: 32px;
        text-align: right;
        font-size: 12px;
        font-weight: 400;
        margin-right: 0;
        align-self: right
    }

    .receive-gift-light__page1 div.box div.inputs {
        background-color: #e1e1e1;
        padding: 24px 16px;
        border-radius: 16px
    }
}

@media (min-width: 992px) {
    .receive-gift-light__page1 img {
        width: 30%
    }

    .receive-gift-light__page1 div.box {
        width: 30% !important
    }
}

@media (min-width: 834px) {
    .receive-gift-light__page2 {
        display: flex;
        margin-top: 64px;
        flex-direction: row-reverse !important;
        justify-content: space-between !important;
        align-items: flex-start !important;
        margin-bottom: 100px;
        width: 100%
    }
}

.receive-gift-light__page2 div.selected {
    width: 100%
}

.receive-gift-light__page2 div.selected img {
    width: 100%;
    border-radius: 16px
}

@media (min-width: 834px) {
    .receive-gift-light__page2 div.selected {
        width: 50%
    }
}

.receive-gift-light__page2 div.title {
    position: absolute;
    bottom: 8px;
    right: 8px
}

.receive-gift-light__page2 div.texts {
    display: flex;
    margin-top: 26px;
    flex-direction: column;
    justify-content: space-between
}

@media (min-width: 834px) {
    .receive-gift-light__page2 div.texts {
        margin-top: 0;
        width: 45%;
        margin-bottom: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: flex-start;
        color: #1a1a1a
    }

    .receive-gift-light__page2 div.texts span.head {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 24px;
        text-align: right;
        width: 100%
    }

    .receive-gift-light__page2 div.texts p.subtitle {
        width: 100%;
        margin-bottom: 32px;
        text-align: right;
        font-size: 12px;
        font-weight: 400;
        margin-right: 0;
        align-self: right
    }
}

@media (min-width: 992px) {
    .receive-gift-light__page2 div.texts span.head {
        font-size: 32px;
        font-weight: 700
    }
}

.receive-gift-light__page2 div.texts p.desktop-title {
    text-align: right;
    width: 100%;
    margin-bottom: 16px
}

@media (min-width: 834px) {
    .receive-gift-light__page2 div.texts button.button1 {
        width: 50%;
        align-self: flex-start
    }
}

@media (min-width: 992px) {
    .receive-gift-light__page2 div.texts button.button1 {
        width: 30%
    }
}

.receive-gift-light__page2 div.texts div.titles {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 200px
}

@media (min-width: 834px) {
    .receive-gift-light__page2 div.texts div.titles {
        margin-bottom: 0;
        align-self: flex-start;
        width: 50%
    }
}

@media (min-width: 992px) {
    .receive-gift-light__page2 div.texts div.titles {
        width: 30%
    }
}

.receive-gift-light__page2 div.texts div.key {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: #666
}

.receive-gift-light__page2 div.texts div.key span {
    margin-right: 8px
}

.receive-gift-light__page2 div.texts div.amount {
    flex-direction: row
}

.receive-gift-light__page2 div.texts div.amount span {
    color: #1a1a1a;
    margin-right: 8px
}

.user-level {
    width: 100vw
}

.user-level__body {
    padding: 16px 16px 40px
}

@media (min-width: 834px) {
    .user-level__body {
        padding: 26px 8%
    }
}

@media (min-width: 992px) {
    .user-level__body {
        padding: 56px 10% 100px
    }
}

.user-level__body li div.element3 {
    align-items: flex-start
}

.user-level__body li div.element3 div {
    font-size: 10px;
    text-align: right
}

@media (min-width: 834px) {
    .user-level__body li div.element3 div {
        font-size: 12px
    }
}

@media (min-width: 992px) {
    .user-level__body li div.element3 div {
        font-size: 14px
    }
}

.user-level__top {
    color: var(--body_text_primary)
}

.user-level__top img {
    width: 70%;
    margin-top: 16px;
    margin-bottom: 40px
}

@media (min-width: 834px) {
    .user-level__top {
        align-items: center;
        flex-direction: row-reverse !important;
        justify-content: space-between !important;
        margin-bottom: 90px
    }

    .user-level__top img {
        width: 44%;
        margin-bottom: 0
    }

    .user-level__top div {
        width: 44%
    }
}

@media (min-width: 992px) {
    .user-level__top img {
        width: 34%
    }

    .user-level__top div {
        align-items: center;
        width: 40%;
        flex-direction: column;
        display: flex;
        text-align: justify
    }

    .user-level__top p {
        font-size: 18px
    }
}

.user-level__top__header {
    text-align: justify;
    margin-bottom: 32px
}

@media (min-width: 992px) {
    .user-level__top__header {
        font-size: 32px;
        align-self: flex-start
    }
}

.user-level__levels {
    width: 100%;
    margin-top: 48px
}

.user-level__levels div {
    background-color: var(--surface_octonary);
    border-radius: 16px;
    padding: 40px 16px 25px;
    color: var(--body_text_primary);
    margin-bottom: 38px
}

@media (min-width: 992px) {
    .user-level__levels div {
        margin-bottom: 75px;
        padding: 60px 16px 25px
    }
}

.user-level__levels div span {
    width: 176px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: var(--body_text_accent);
    position: absolute;
    top: -24px;
    right: 0;
    background-color: var(--surface_decenary);
    text-align: center
}

@media (min-width: 992px) {
    .user-level__levels div span {
        width: 196px;
        height: 58px;
        font-size: 14px;
        top: -28px
    }
}

.user-level__levels div p {
    text-align: justify;
    direction: rtl
}

@media (min-width: 992px) {
    .user-level__levels div p {
        font-size: 14px
    }
}

.user-level__table1-wrapper {
    width: 100%;
    padding-top: 32px
}

.user-level__table1-wrapper img.arrow-left {
    position: absolute;
    left: 0;
    top: 0
}

.user-level__table1-wrapper div.wrapper {
    width: 100%;
    overflow-x: scroll
}

.user-level__table1-wrapper .table1 {
    width: 200%
}

@media (min-width: 834px) {
    .user-level__table1-wrapper .table1 {
        width: 100%
    }
}

.invitation {
    width: 100vw;
    min-height: 100vh
}

.invitation__body {
    padding: 16px 16px 40px
}

@media (min-width: 834px) {
    .invitation__body {
        padding: 26px 8%
    }
}

@media (min-width: 992px) {
    .invitation__body {
        padding: 56px 18% 100px
    }
}

.invitation__pattern-left {
    position: absolute;
    left: 0
}

.invitation__pattern-right {
    position: absolute;
    right: 0
}

.invitation__nocodes {
    width: 100%
}

.invitation__nocodes__mid {
    color: var(--body_text_primary);
    margin-top: 48px;
    margin-bottom: 24px
}

@media (min-width: 834px) {
    .invitation__nocodes__mid {
        font-size: 20px;
        margin-top: 0;
        margin-bottom: 48px
    }
}

.invitation__nocodes__cards {
    width: 100%
}

@media (min-width: 834px) {
    .invitation__nocodes__cards {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important
    }
}

.invitation__nocodes__cards .element4,
.invitation__nocodes__cards .element4-light {
    width: 100%;
    margin-bottom: 16px
}

@media (min-width: 834px) {

    .invitation__nocodes__cards .element4,
    .invitation__nocodes__cards .element4-light {
        width: calc((100% - 60px) / 3);
        margin-bottom: 0;
        height: 220px
    }
}

@media (min-width: 992px) {

    .invitation__nocodes__cards .element4,
    .invitation__nocodes__cards .element4-light {
        width: 27%;
        height: 220px;
        padding: 32px 16px 24px
    }
}

.invitation__codes {
    width: 100%
}

.invitation__top {
    color: var(--body_text_primary)
}

.invitation__top div.box .button1 {
    width: 160px
}

@media (min-width: 834px) {
    .invitation__top {
        align-items: center;
        flex-direction: row-reverse !important;
        justify-content: space-between !important;
        margin-bottom: 112px
    }

    .invitation__top img.image,
    .invitation__top div.box {
        width: 44%
    }
}

@media (min-width: 992px) {
    .invitation__top img.image {
        width: 36%;
        margin-left: -50px
    }

    .invitation__top div.box {
        align-items: center;
        width: 55%;
        flex-direction: column;
        display: flex;
        text-align: justify
    }

    .invitation__top p {
        font-size: 18px
    }
}

.invitation__top__header {
    text-align: justify;
    margin-bottom: 32px
}

@media (min-width: 992px) {
    .invitation__top__header {
        font-size: 32px
    }
}

.invitation__top__cards {
    width: 44%;
    height: 400px;
    background-color: var(--surface_octonary);
    border-radius: 16px
}

@media (min-width: 834px) {
    .invitation__top__cards {
        height: 220px
    }

    .invitation__top__cards .element4 {
        background-color: unset
    }

    .invitation__top__cards .element4 img {
        margin-bottom: 0;
        margin-left: 16px
    }
}

@media (min-width: 992px) {
    .invitation__top__cards {
        width: 35%;
        height: fit-content;
        margin-left: 5%
    }
}

.invitation__top__cards .element4,
.invitation__top__cards .element4-light {
    flex-direction: row;
    width: 100% !important
}

.invitation__top__cards .element4-light img {
    margin-left: 16px !important
}

.invitation__list {
    width: 100%
}

.invitation__list span.head {
    color: var(--body_text_primary);
    margin-top: 48px
}

.invitation__list button.button2,
.invitation__list button.button2-light {
    align-self: flex-start
}

@media (min-width: 834px) {

    .invitation__list button.button2,
    .invitation__list button.button2-light {
        width: 160px
    }
}

.invitation__list__links {
    margin-top: 32px;
    width: 100%
}

@media (min-width: 834px) {
    .invitation__list__links {
        background-color: var(--surface_octonary);
        border-radius: 16px
    }
}

.invitation__list__links div.item {
    width: 100%;
    color: var(--body_text_primary);
    padding: 16px;
    border-bottom: 1px solid #333
}

.invitation__list__links div.item.border {
    border-bottom: 1px solid #666
}

.invitation__list__links div.item .field {
    width: 10%;
    display: flex;
    align-items: center;
    justify-content: center
}

.invitation__list__links div.item .big {
    width: 15% !important;
    align-items: center !important;
    display: flex
}

.invitation__list__links div.item .big img {
    margin-right: 8px
}

.invitation__list__links div.card {
    padding: 8px;
    width: 100%;
    border-radius: 16px;
    margin-bottom: 16px;
    background-color: var(--surface_octonary)
}

.invitation__list__links div.card div {
    justify-content: center;
    flex-direction: row;
    display: flex
}

.invitation__list__links div.card div.row {
    width: 100%;
    border-bottom: 1px solid var(--surface_quaternary);
    padding: 8px 0
}

.invitation__list__links div.card div img {
    margin-right: 8px
}

.invitation__list__links div.card span {
    color: var(--body_text_primary)
}

.invitation__list__links div.card span.key {
    color: var(--body_text_secondary)
}

.invitation__stats {
    color: var(--body_text_primary)
}

@media (min-width: 834px) {
    .invitation__stats {
        width: 100%;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center
    }
}

.invitation__stats__link {
    padding: 16px 24px;
    width: 100%;
    background-color: var(--surface_octonary);
    border-radius: 16px
}

@media (min-width: 834px) {
    .invitation__stats__link {
        width: 50%;
        height: 296px;
        padding: 0 24px
    }
}

@media (min-width: 992px) {
    .invitation__stats__link {
        width: 45%
    }
}

.invitation__stats__link span.title {
    margin-bottom: 32px
}

.invitation__stats__link div.percents {
    width: 100%
}

.invitation__stats__link div.percents span.key {
    color: var(--body_text_secondary)
}

.invitation__stats__link div.row {
    margin-bottom: 32px
}

.invitation__stats__link div.row img {
    cursor: pointer
}

.invitation__stats__link div.row span {
    margin-left: 8px
}

.invitation__stats__box {
    width: 100%
}

@media (min-width: 834px) {
    .invitation__stats__box {
        width: 40%
    }
}

.invitation__stats__box div {
    background-color: var(--surface_octonary);
    border-radius: 16px;
    width: 100%;
    padding: 0 28px;
    height: 140px;
    margin-top: 16px
}

@media (min-width: 834px) {
    .invitation__stats__box div {
        margin-top: 0
    }
}

.invitation-popup {
    width: 100vw;
    height: 100vh;
    background-color: var(--popup-bg-color);
    position: fixed;
    top: 0;
    left: 0;
    padding: 16px;
    z-index: 100
}

@media (min-width: 834px) {
    .invitation-popup {
        padding: 0 30%
    }
}

@media (min-width: 992px) {
    .invitation-popup {
        padding: 0 35%
    }
}

.invitation-popup__body {
    max-width: 380px;
    background-color: var(--surface_nonary);
    border-radius: 16px;
    padding: 16px 16px 24px
}

.invitation-popup__body.full {
    width: 100%;
    max-width: unset
}

.invitation-popup__body .table1 {
    margin-top: 0;
    padding-top: 8px
}

.invitation-popup__body span.title {
    color: var(--body_text_primary);
    text-align: right;
    margin-bottom: 8px
}

.invitation-popup__body span.icircle {
    border-radius: 50%;
    border: 2px solid var(--border_line_quinary);
    width: 32px;
    height: 32px
}

.invitation-popup__body span.icircle.selected {
    border: 2px solid var(--border_line_primary)
}

.invitation-popup__body p.text {
    width: 100%;
    text-align: center;
    color: var(--body_text_primary)
}

@media (min-width: 834px) {
    .invitation-popup__body p.text {
        font-size: 16px
    }
}

.invitation-popup__body p.text.subtitle {
    margin-top: 8px
}

.invitation-popup__body div.line {
    height: 2px;
    width: 14px;
    background-color: var(--border_line_quinary)
}

.invitation-popup__body div.line.selected {
    background-color: var(--border_line_primary)
}

@media (min-width: 992px) {
    .invitation-popup__body div.line {
        width: 20px
    }
}

.invitation-popup__body div.item {
    cursor: pointer
}

.invitation-popup__body div.bar {
    flex-direction: row-reverse !important;
    color: var(--body_text_primary);
    margin-top: 16px
}

.invitation-popup__body div.percents {
    margin-top: 16px;
    margin-bottom: 16px;
    width: 100%
}

.invitation-popup__body div.percents span {
    color: var(--body_text_primary)
}

.invitation-popup__body div.percents span.key {
    color: var(--body_text_secondary)
}

.invitation-popup__body div.buttons {
    width: 100%;
    margin-top: 8px
}

.invitation-popup__body div.buttons button {
    width: calc((100% - 16px)/2)
}

.invitation-popup__body div.close {
    width: 100%
}

.invitation-popup__body div.close img {
    cursor: pointer
}

.invitation-popup__body div.header {
    width: 100%;
    height: 48px;
    background-color: var(--body_text_quaternaryt);
    color: var(--card_desc);
    border-radius: 8px;
    margin-top: 16px
}

.invitation-popup__body div.header span {
    flex: 1
}

.invitation-popup__body div.empty {
    height: 320px;
    width: 100%;
    top: 0
}

.invitation-popup__body div.empty img {
    width: 80px
}

.home {
    width: 100vw;
    padding-bottom: 8px
}

.home.light {
    background-color: #e9e9e9
}

.main {
    overflow-x: hidden
}

.main .banner-card {
    margin: 40px 0;
    width: 100%;
    padding: 0 16px
}

@media (min-width: 834px) {
    .main .banner-card {
        margin: 56px 8%;
        padding: 0;
        width: 84%
    }
}

@media (min-width: 992px) {
    .main .banner-card {
        margin: 88px 12% 48px;
        width: 76%
    }
}

.main .banner-card__banner-loading {
    height: 82px
}

@media (min-width: 834px) {
    .main .banner-card__banner-loading {
        height: 90px
    }
}

@media (min-width: 992px) {
    .main .banner-card__banner-loading {
        height: 150px
    }
}

.main .banner-card__banner {
    height: 82px;
    margin-top: 0
}

@media (min-width: 834px) {
    .main .banner-card__banner {
        height: calc((84vw - 90px) / 4 * 9 / 16)
    }
}

@media (min-width: 992px) {
    .main .banner-card__banner {
        height: calc((76vw - 90px) / 4 * 9 / 16);
        width: 100%
    }
}

@media (min-width: 834px) {
    .main .banner-card__banner div.wrapper1 {
        width: 100%
    }
}

@media (min-width: 834px) {
    .main .banner-card__banner div.wrapper2 {
        width: 100%;
        display: flex;
        justify-content: space-between
    }
}

.main .banner-card__banner div.item {
    height: 82px;
    width: 145px;
    background-color: unset
}

@media (min-width: 834px) {
    .main .banner-card__banner div.item {
        margin: 0;
        padding: 0;
        width: calc((84vw - 90px)/4);
        height: calc((84vw - 90px) / 4 * 9 / 16)
    }
}

@media (min-width: 992px) {
    .main .banner-card__banner div.item {
        width: calc((76vw - 90px)/4);
        height: calc((76vw - 90px) / 4 * 9 / 16)
    }
}

.main .banner-card__banner div.item img {
    height: 82px
}

@media (min-width: 834px) {
    .main .banner-card__banner div.item img {
        height: calc((84vw - 90px) / 4 * 9 / 16)
    }
}

@media (min-width: 992px) {
    .main .banner-card__banner div.item img {
        height: calc((76vw - 90px) / 4 * 9 / 16)
    }
}

.main .currencies-card {
    margin: 0 16px;
    width: calc(100% - 32px)
}

@media (min-width: 834px) {
    .main .currencies-card {
        width: 84%;
        margin: 0 8%
    }
}

@media (min-width: 992px) {
    .main .currencies-card {
        width: 76%;
        margin: 0 12%
    }
}

.main__body {
    width: 100%
}

@media (min-width: 834px) {
    .main__body {
        padding-bottom: 60px
    }
}

.main__top-btns {
    width: 100%;
    margin-top: 16px;
    z-index: 20
}

@media (min-width: 834px) {
    .main__top-btns {
        flex-direction: row;
        justify-content: flex-start
    }
}

@media (min-width: 992px) {
    .main__top-btns {
        margin-top: 16px
    }
}

@media (min-width: 834px) {

    .main__top-btns .input1,
    .main__top-btns .input1-light {
        margin: 0
    }
}

@media (min-width: 992px) {

    .main__top-btns .input1,
    .main__top-btns .input1-light {
        max-width: 280px
    }
}

.main__top-btns .button1 {
    margin-top: 0
}

@media (min-width: 834px) {
    .main__top-btns .button1 {
        width: 105px;
        margin: 0 8px 0 0
    }
}

.main__top-btns div.desktop-buttons {
    width: 100%;
    flex-wrap: wrap
}

.main__top-btns div.desktop-buttons div.item {
    cursor: pointer;
    padding: 16px;
    background-color: var(--surface_secondary);
    border-radius: 16px;
    margin-left: 16px;
    min-width: 100px;
    margin-bottom: 20px
}

@media (min-width: 992px) {
    .main__top-btns div.desktop-buttons div.item {
        font-size: 14px;
        margin-left: 20px;
        min-width: 120px
    }
}

.main__top-btns div.desktop-buttons div.item span {
    margin-top: 8px;
    color: var(--body_text_primary)
}

.main__top-btns div.desktop-buttons div.item .icon {
    width: 32px;
    height: 32px
}

@media (min-width: 992px) {
    .main__top-btns div.desktop-buttons div.item .icon {
        width: 40px;
        height: 40px
    }
}

.main__top-btns div.desktop-buttons div.item .icon.light {
    filter: invert(1)
}

.main__top-pro {
    width: 100%;
    align-items: flex-end;
    padding: 0 8%;
    min-height: 450px
}

@media (min-width: 992px) {
    .main__top-pro {
        padding: 88px 12% 54px
    }
}

.main__top-pro .knh-asset-chart {
    background-color: var(--surface_octonary)
}

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

.main__top-pro__price div.total {
    color: var(--body_text_primary);
    font-size: 44px;
    margin-top: 24px;
    line-height: 40px
}

.main__top-pro__price__title {
    text-align: right
}

.main__top-pro__price__title span {
    color: var(--body_text_secondary)
}

.main__top-pro__price__title>svg {
    margin-inline-start: 12px
}

.main__top-pro__wrapper {
    width: 40%;
    flex: 1;
    align-items: flex-start
}

.main__top {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    margin-top: 32px
}

.main__top__banner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    width: 100%
}

@media (min-width: 834px) {
    .main__top {
        margin-top: 20px;
        padding: 0 8% 0 0
    }
}

@media (min-width: 992px) {
    .main__top {
        margin-top: 32px;
        padding: 0 12%
    }
}

.main__top div.motion {
    margin-top: 48px;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    align-content: center
}

@media (min-width: 834px) {
    .main__top div.motion {
        margin: 0;
        width: 60%
    }
}

.main__top div.wrapper {
    width: 100%;
    padding: 0 16px
}

@media (min-width: 834px) {
    .main__top div.wrapper {
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 5%
    }
}

@media (min-width: 992px) {
    .main__top div.wrapper {
        margin-bottom: 0
    }
}

.main__top div.title :first-child {
    margin-bottom: 10px
}

.main__top div.title img {
    width: 50%;
    margin-right: 16px
}

.main__top div.title__title-wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: center
}

.main__top div.title__header {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-end;
    align-content: space-around;
    text-align: right
}

.main__top h3 {
    color: var(--body_text_primary);
    text-align: right;
    font-size: 16px;
    font-weight: 700;
    line-height: 32px;
    white-space: nowrap
}

@media (min-width: 834px) {
    .main__top h3 {
        text-align: right;
        font-size: 24px;
        font-weight: 500
    }
}

@media (min-width: 992px) {
    .main__top h3 {
        font-size: 40px
    }
}

.main__top h2 {
    text-align: center;
    color: var(--body_text_quinary);
    margin-top: 12px
}

@media (min-width: 834px) {
    .main__top h2 {
        text-align: right;
        margin-top: 16px;
        width: 120%;
        z-index: 20
    }
}

@media (min-width: 992px) {
    .main__top h2 {
        font-size: 16px;
        margin: 24px 0;
        width: 100%
    }
}

.main__top__advertise {
    width: calc(100% - 32px);
    margin-top: 32px
}

@media (min-width: 834px) {
    .main__top__advertise {
        width: 100%;
        margin-top: 80px
    }
}

.main__desc {
    width: 100%;
    margin-top: 80px;
    padding: 0 16px
}

.main__desc img.image {
    width: 50%;
    margin-top: 32px
}

@media (min-width: 834px) {
    .main__desc img.image {
        width: unset;
        max-width: 186px;
        margin: 0
    }
}

@media (min-width: 992px) {
    .main__desc img.image {
        width: unset;
        max-width: 280px
    }
}

.main__desc .switch1 {
    margin-top: 24px;
    width: 240px;
    height: 48px
}

@media (min-width: 834px) {
    .main__desc .switch1 {
        margin-top: 32px;
        width: 250px;
        font-size: 14px !important
    }
}

@media (min-width: 992px) {
    .main__desc .switch1 {
        width: 300px
    }
}

@media (min-width: 834px) {
    .main__desc {
        flex-direction: row !important;
        justify-content: space-between !important;
        margin-top: 116px;
        padding: 0 8% 0 15%
    }
}

@media (min-width: 992px) {
    .main__desc {
        padding: 0 12% 0 20%;
        margin-top: 188px
    }
}

.main__desc__wrapper {
    width: 100%
}

@media (min-width: 834px) {
    .main__desc__wrapper {
        width: 50%;
        align-items: flex-start
    }
}

@media (min-width: 992px) {
    .main__desc__wrapper {
        width: 47%
    }
}

.main__desc__title {
    color: var(--body_text_primary);
    width: 100%;
    text-align: center
}

@media (min-width: 834px) {
    .main__desc__title {
        justify-content: flex-start !important;
        font-size: 20px;
        text-align: right
    }
}

@media (min-width: 992px) {
    .main__desc__title {
        font-size: 32px
    }
}

.main__desc__text {
    width: 100%;
    text-align: center;
    margin-top: 16px;
    color: var(--body_text_quinary);
    min-height: 100px;
    align-items: flex-start
}

@media (min-width: 834px) {
    .main__desc__text {
        text-align: right;
        min-height: unset
    }
}

@media (min-width: 992px) {
    .main__desc__text {
        font-size: 16px;
        margin-top: 24px
    }
}

@media (min-width: 992px) {
    .main__floating-bar {
        margin-bottom: 40px;
        padding-bottom: 40px
    }

    .main__floating-bar div.line {
        width: 100%;
        position: absolute;
        height: 1px;
        bottom: 0;
        z-index: 111
    }
}

.main__floating-bar__markets {
    width: 100vw;
    bottom: 0;
    height: 44px;
    z-index: 90;
    display: flex;
    align-items: center;
    white-space: nowrap;
    transition-duration: .1s;
    position: fixed
}

.main__floating-bar__markets.is-absolute {
    position: absolute;
    transition-duration: .1s
}

.main__floating-bar__markets__wrapper {
    background: radial-gradient(164.86% 176578.5% at 100% 49.99%, var(--gradient_primary) 0%, var(--gradient_secondary) 100%);
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    overflow: hidden;
    position: relative;
    width: 100vw
}

.main__floating-bar__markets__list {
    position: absolute;
    animation-direction: normal;
    animation-duration: 80s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    width: 3000px;
    transform: translate(-3000px);
    animation-play-state: running
}

.main__floating-bar__markets__list.first {
    animation-name: move1;
    z-index: 9
}

.main__floating-bar__markets__list.second {
    animation-name: move2;
    animation-delay: 40s;
    z-index: 10
}

.main__floating-bar__markets__list.third {
    animation-name: move3;
    z-index: 8;
    animation-iteration-count: 1
}

.main__floating-bar__markets__list.paused {
    animation-play-state: paused
}

.main__floating-bar__markets__list img {
    width: 24px;
    height: 24px;
    margin-left: 8px
}

.main__floating-bar__markets__list div.item {
    width: 300px;
    align-items: center;
    color: var(--body_text_senary);
    display: -ms-inline-flexbox;
    font-size: 20px;
    font-weight: 700
}

.main__floating-bar__markets__list div.title_fa,
.main__floating-bar__markets__list div.price,
.main__floating-bar__markets__list div.change {
    color: var(--body_text_senary);
    margin-left: 12px
}

.main__floating-bar__markets__list div.change span {
    direction: ltr
}

.main__floating-bar__markets__list div.change span.up {
    color: var(--accent_color_secondary)
}

.main__floating-bar__markets__list div.change span.down {
    color: #ff5a5a
}

.main__invest {
    width: 100%;
    margin-top: 80px;
    padding: 0 16px
}

@media (min-width: 834px) {
    .main__invest {
        margin-top: 116px;
        padding: 0 8%
    }
}

@media (min-width: 992px) {
    .main__invest {
        padding: 0 12%;
        margin-top: 250px
    }
}

.main__invest__title {
    color: var(--body_text_primary);
    width: 100%;
    text-align: center
}

@media (min-width: 992px) {
    .main__invest__title {
        font-size: 32px
    }
}

.main__invest__text {
    width: 100%;
    text-align: center;
    margin-top: 16px;
    color: var(--body_text_quinary)
}

@media (min-width: 992px) {
    .main__invest__text {
        font-size: 16px;
        margin-top: 24px
    }
}

.main__invest__video {
    margin-top: 40px
}

@media (min-width: 834px) {
    .main__invest__video {
        margin-top: 20px;
        width: 65%
    }
}

@media (min-width: 834px) {
    .main__invest__video {
        margin-top: 32px;
        width: 60%
    }
}

.main__blog {
    width: 100%;
    margin-top: 88px;
    padding: 0 16px
}

@media (min-width: 834px) {
    .main__blog {
        padding: 0 8%;
        margin-top: 116px
    }
}

@media (min-width: 992px) {
    .main__blog {
        padding: 0 12%;
        margin-top: 250px
    }
}

.main__blog__title {
    color: var(--body_text_primary)
}

@media (min-width: 834px) {
    .main__blog__title {
        width: 100%;
        text-align: right;
        font-size: 20px
    }
}

@media (min-width: 992px) {
    .main__blog__title {
        font-size: 32px
    }
}

.main__blog__list {
    width: 100%;
    margin-top: 12px;
    flex-wrap: wrap;
    align-items: flex-start !important
}

@media (min-width: 834px) {
    .main__blog__list {
        flex-wrap: unset;
        margin-top: 32px
    }
}

@media (min-width: 992px) {
    .main__blog__list {
        margin-top: 48px
    }
}

.main__blog__item {
    width: calc((100% - 16px)/2);
    margin-top: 20px;
    cursor: pointer
}

@media (min-width: 834px) {
    .main__blog__item {
        width: calc((100% - 90px)/4);
        margin: 0
    }
}

@media (min-width: 992px) {
    .main__blog__item {
        width: calc((100% - 90px)/4)
    }
}

.main__blog__item div.image {
    width: 100%;
    height: calc((100vw - 48px)*.28125)
}

@media (min-width: 834px) {
    .main__blog__item div.image {
        height: calc((84vw - 90px) / 4 * 9 / 16)
    }
}

@media (min-width: 992px) {
    .main__blog__item div.image {
        height: calc((76vw - 90px) / 4 * 9 / 16)
    }
}

.main__blog__item div.image img {
    width: 100%;
    height: 100%;
    border-radius: 16px
}

.main__blog__item h3 {
    color: var(--body_text_primary);
    text-align: right;
    margin-top: 8px;
    line-height: 22px
}

@media (min-width: 834px) {
    .main__blog__item h3 {
        margin-top: 12px
    }
}

@media (min-width: 992px) {
    .main__blog__item h3 {
        margin-top: 16px;
        font-size: 14px;
        width: 110%
    }
}

.main__download {
    width: 100%;
    margin-top: 8px;
    flex-wrap: wrap;
    padding: 0 16px
}

@media (min-width: 834px) {
    .main__download {
        padding: 0
    }
}

@media (min-width: 992px) {
    .main__download {
        margin-top: 24px
    }
}

.main__download div {
    cursor: pointer;
    margin-top: 24px;
    width: 50%
}

.main__download div img.android {
    margin-right: 20px
}

@media (min-width: 834px) {
    .main__download div {
        justify-content: flex-end !important
    }

    .main__download div.right {
        justify-content: flex-start !important
    }
}

@media (min-width: 992px) {
    .main__download div {
        margin-top: 32px
    }
}

.main__login {
    width: 100%;
    padding: 0 16px;
    margin-top: 88px
}

@media (min-width: 834px) {
    .main__login {
        padding: 0 8%;
        margin-top: 140px
    }
}

@media (min-width: 992px) {
    .main__login {
        margin-top: 240px;
        padding: 0 12%
    }
}

.main__login__pattern-right {
    position: absolute;
    right: 8%;
    height: 208px
}

@media (min-width: 992px) {
    .main__login__pattern-right {
        height: unset;
        right: 12%
    }
}

.main__login__pattern-left {
    position: absolute;
    left: 8%;
    height: 208px
}

@media (min-width: 992px) {
    .main__login__pattern-left {
        height: unset;
        left: 12%
    }
}

.main__login__title {
    color: var(--body_text_primary)
}

@media (min-width: 992px) {
    .main__login__title {
        font-size: 32px
    }
}

.main__login__subtitle {
    color: var(--card_desc);
    text-align: center;
    margin-top: 12px
}

@media (min-width: 992px) {
    .main__login__subtitle {
        font-size: 16px;
        margin-top: 16px
    }
}

.main__login .button1 {
    width: 150px;
    margin-top: 24px
}

@media (min-width: 992px) {
    .main__login .button1 {
        margin-top: 32px
    }
}

.main__back-top-top {
    position: absolute;
    bottom: 10px;
    left: 24px;
    cursor: pointer;
    width: 48px;
    background-color: unset;
    border: unset;
    outline: unset
}

@media (min-width: 992px) {
    .main__back-top-top {
        bottom: 50px;
        width: 56px;
        left: 6%
    }
}

.main__bottom-dl {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #222;
    z-index: 50;
    height: 48px;
    padding: 0 12px
}

.main__bottom-dl button {
    background-color: unset;
    border: unset;
    outline: unset;
    width: 24px;
    height: 24px
}

.main__bottom-dl div {
    color: #fff
}

.main__bottom-dl div span {
    margin: 0 8px
}

.main__text {
    width: 100%;
    margin-top: 88px;
    padding: 0 16px 12px;
    margin-bottom: 40px;
    color: var(--body_text_primary)
}

@media (min-width: 834px) {
    .main__text {
        margin-top: 140px;
        padding: 0 8% 20px;
        margin-bottom: 60px
    }
}

@media (min-width: 992px) {
    .main__text {
        margin-top: 210px;
        padding: 0 12%;
        margin-bottom: 100px
    }
}

.main__text img {
    position: absolute;
    bottom: -12px;
    z-index: 99;
    cursor: pointer
}

.main__text img.rotate {
    transform: rotate(180deg);
    bottom: -8px
}

@media (min-width: 834px) {
    .main__text img.rotate {
        bottom: -32px
    }
}

.main__text__wrapper {
    width: 100%;
    max-height: 330px;
    transition-duration: 1s;
    overflow: hidden
}

.main__text__wrapper.expand {
    max-height: 10000px;
    transition-duration: 1s
}

.main__text__shadow {
    background: linear-gradient(0deg, var(--background_color) -16.45%, rgba(255, 255, 255, 0) 90%);
    width: 100%;
    position: absolute;
    height: 100%;
    transition-duration: .2s;
    transition-delay: .1s;
    display: flex
}

.main__text__shadow.hide {
    opacity: 0;
    display: none;
    transition-duration: .2s
}

.main__text__button {
    background-color: unset;
    border: unset;
    outline: unset
}

.main__text h1 {
    width: 100%;
    text-align: right;
    margin: 16px 0
}

@media (min-width: 834px) {
    .main__text h1 {
        font-size: 20px;
        margin: 20px 0 16px
    }
}

.main__text h2 {
    width: 100%;
    text-align: right;
    margin: 16px 0
}

@media (min-width: 834px) {
    .main__text h2 {
        font-size: 20px;
        margin: 20px 0 16px
    }
}

.main__text p {
    width: 100%;
    text-align: right
}

.main__text span.bold {
    font-weight: 500
}

.main__text a {
    cursor: pointer;
    text-decoration: underline;
    color: var(--body_text_primary);
    margin: 0 2px;
    text-decoration-color: var(--body_text_primary)
}

.main__bottom-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 110
}

.main__bottom-banner img.banner {
    width: 100%
}

.main__bottom-banner img.close {
    position: absolute;
    top: 10px;
    left: 10px
}

.main__pin-wrapper {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start
}

.main__hamster {
    width: 100%;
    cursor: pointer;
    padding: 16px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    align-content: space-between;
    background-color: transparent;
    background-color: #222;
    border-top: 1px solid #333
}

@media (min-width: 834px) {
    .main__hamster {
        width: 100%
    }
}

.main__hamster button {
    background-color: transparent;
    border: none;
    color: #4ef09d
}

@media (min-width: 834px) {
    .main__hamster button {
        font-size: 16px !important
    }
}

.main__hamster img {
    width: 24px
}

.main__hamster__right-section {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: space-between
}

.main__hamster__right-section.inner {
    margin-right: 8px
}

.main__hamster__right-section .pin {
    color: #4ef09d;
    margin-right: 4px
}

@media (min-width: 834px) {
    .main__hamster__right-section .pin {
        font-size: 16px !important
    }
}

.main__hamster__right-section .title {
    color: #fff
}

@media (min-width: 834px) {
    .main__hamster__right-section .title {
        font-size: 16px !important
    }
}

@keyframes move1 {
    0% {
        -webkit-transform: translateX(-3000px);
        transform: translate(-3000px)
    }

    to {
        -webkit-transform: translateX(3000px);
        transform: translate(3000px)
    }
}

@keyframes move2 {
    0% {
        -webkit-transform: translateX(-3000px);
        transform: translate(-3000px)
    }

    to {
        -webkit-transform: translateX(3000px);
        transform: translate(3000px)
    }
}

@keyframes move3 {
    0% {
        -webkit-transform: translateX(0px);
        transform: translate(0)
    }

    to {
        -webkit-transform: translateX(6000px);
        transform: translate(6000px);
        visibility: hidden
    }
}

.rules {
    width: 100vw
}

.rules__skeleton-wrapper {
    width: 100%
}

.rules__skeleton-wrapper>span {
    padding-bottom: 16px
}

.rules__body {
    padding: 16px 16px 40px
}

@media (min-width: 834px) {
    .rules__body {
        padding: 26px 8%
    }
}

@media (min-width: 992px) {
    .rules__body {
        padding: 56px 10% 100px
    }
}

.rules__body div.title {
    color: var(--body_text_primary) !important
}

.rules__body div.title span {
    margin-right: 8px;
    color: var(--body_text_primary) !important
}

.rules__body div.text,
.rules__body div.text span {
    color: var(--body_text_primary) !important
}

.more-page {
    width: 100vw;
    padding-bottom: 120px;
    background-color: #222
}

.more-page.light {
    background-color: #f2f2f2
}

.menu-page {
    width: 100vw
}

@media (min-width: 834px) {
    .menu-page {
        width: 35%;
        height: unset;
        position: fixed;
        left: 0;
        top: 84px;
        z-index: 150;
        background-color: #222;
        border-radius: 0 0 16px
    }
}

@media (min-width: 992px) {
    .menu-page {
        width: 30%
    }
}

.menu-page__wrapper {
    width: 100%;
    overflow-y: scroll;
    height: calc(100% - 152px);
    padding-bottom: 120px
}

@media (min-width: 992px) {
    .menu-page__wrapper {
        padding: 0;
        height: unset
    }
}

.menu-page__body {
    width: 100%;
    padding-inline: 16px;
    margin-top: 20px
}

@media (min-width: 834px) {
    .menu-page__body {
        margin-top: 16px
    }
}

.menu-page__body div.item {
    width: 100%;
    margin-bottom: 20px;
    color: #fff
}

.menu-page__body div.item.logout {
    color: #ff5a5a
}

.menu-page__body div.item div {
    margin-right: 12px;
    cursor: pointer
}

@media (min-width: 834px) {
    .menu-page__body div.item div {
        margin-right: 16px;
        font-size: 14px
    }
}

.menu-page__body div.version {
    position: absolute;
    left: 0;
    color: #b2b2b2
}

.menu-page__header {
    width: 100%;
    background-color: #222;
    padding: 16px 16px 24px
}

.menu-page__header div.row1 {
    width: 100%;
    margin-bottom: 24px
}

.menu-page__header div.row1 button {
    background-color: unset;
    border: unset;
    outline: unset;
    width: 24px;
    height: 24px
}

.menu-page__header div.row2 {
    width: 100%;
    align-items: flex-end
}

.menu-page__header div.fullname {
    color: #fff
}

.menu-page__header div.btn {
    color: #4ef09d;
    cursor: pointer
}

.menu-page__header div.accepted {
    color: #fff
}

.menu-page__header div.accepted.not-auth {
    color: #ff5a5a
}

.menu-page__header div.text {
    margin-right: 12px
}

.menu-page__header div.profile-image {
    width: 64px;
    height: 64px;
    border-radius: 32px;
    border: 1px solid #666
}

.menu-page__header div.profile-image img {
    width: 32px
}

.menu-page-light {
    width: 100vw;
    background-color: #e9e9e9
}

@media (min-width: 834px) {
    .menu-page-light {
        width: 35%;
        height: unset;
        position: fixed;
        left: 0;
        top: 84px;
        z-index: 150;
        background-color: #e1e1e1;
        border-radius: 0 0 16px
    }
}

@media (min-width: 992px) {
    .menu-page-light {
        width: 30%
    }
}

.menu-page-light__wrapper {
    width: 100%;
    overflow-y: scroll;
    height: calc(100% - 152px);
    padding-bottom: 120px
}

@media (min-width: 992px) {
    .menu-page-light__wrapper {
        padding: 0;
        height: unset
    }
}

.menu-page-light__body {
    width: 100%;
    padding-inline: 16px;
    margin-top: 20px
}

@media (min-width: 834px) {
    .menu-page-light__body {
        margin-top: 16px
    }
}

.menu-page-light__body div.item {
    width: 100%;
    margin-bottom: 20px;
    color: #1a1a1a
}

.menu-page-light__body div.item.logout {
    color: #ff5a5a
}

.menu-page-light__body div.item div {
    margin-right: 12px;
    cursor: pointer
}

@media (min-width: 834px) {
    .menu-page-light__body div.item div {
        margin-right: 16px;
        font-size: 14px
    }
}

.menu-page-light__body div.version {
    position: absolute;
    left: 0;
    color: #666
}

.menu-page-light__header {
    width: 100%;
    background-color: #222;
    padding: 16px 16px 24px
}

@media (min-width: 834px) {
    .menu-page-light__header {
        background-color: #e1e1e1
    }
}

.menu-page-light__header div.row1 {
    width: 100%;
    margin-bottom: 24px
}

.menu-page-light__header div.row1 button {
    background-color: unset;
    border: unset;
    outline: unset;
    width: 24px;
    height: 24px
}

.menu-page-light__header div.row2 {
    width: 100%;
    align-items: flex-end
}

.menu-page-light__header div.fullname {
    color: #fff
}

@media (min-width: 834px) {
    .menu-page-light__header div.fullname {
        color: #1a1a1a
    }
}

.menu-page-light__header div.btn {
    color: #02a67f;
    cursor: pointer
}

.menu-page-light__header div.accepted {
    color: #fff
}

.menu-page-light__header div.accepted.not-auth {
    color: #ff5a5a
}

@media (min-width: 834px) {
    .menu-page-light__header div.accepted {
        color: #1a1a1a
    }
}

.menu-page-light__header div.text {
    margin-right: 12px
}

.menu-page-light__header div.profile-image {
    width: 64px;
    height: 64px;
    border-radius: 32px;
    border: 1px solid #666
}

@media (min-width: 834px) {
    .menu-page-light__header div.profile-image {
        border: 1px solid rgba(102, 102, 102, .6509803922)
    }
}

.menu-page-light__header div.profile-image img {
    width: 32px
}

.menu-detail {
    width: 100vw;
    height: 100vh
}

.menu-detail__wrapper {
    width: 100%;
    height: 100%
}

@media (min-width: 834px) {
    .menu-detail__wrapper {
        padding: 32px 25% 40px !important
    }
}

@media (min-width: 992px) {
    .menu-detail__wrapper {
        padding: 32px 35% 40px !important
    }
}

.menu-detail__inside {
    width: 100%;
    height: 100%
}

@media (min-width: 834px) {
    .menu-detail__inside {
        background-color: var(--surface_octonary);
        border-radius: 16px;
        padding-bottom: 16px
    }
}

.menu-detail__desktop-head {
    width: 100%;
    padding: 16px;
    border-bottom: 1px solid var(--border_line_tertiary);
    color: var(--body_text_primary)
}

.menu-detail__desktop-head button {
    background-color: unset;
    border: unset;
    outline: unset;
    cursor: pointer;
    width: 24px;
    height: 24px
}

.menu-detail__desktop-head div img {
    width: 24px
}

.menu-detail__desktop-head div span {
    margin-right: 8px
}

.menu-detail__body {
    width: 100%;
    padding-right: 16px;
    margin-top: 20px
}

.menu-detail__body div.item {
    width: 100%;
    margin-bottom: 20px;
    color: var(--body_text_primary)
}

.menu-detail__body div.item img {
    width: 24px
}

.menu-detail__body div.item div {
    direction: ltr;
    margin-right: 12px;
    cursor: pointer
}

@media (min-width: 834px) {
    .menu-detail__body div.item div {
        font-size: 14px
    }
}

.menu-detail__head {
    width: 100%;
    border-bottom: 1px solid var(--border_line_tertiary);
    padding: 0 16px 16px
}

.menu-detail__head div.row {
    width: 100%;
    padding-top: 16px
}

.menu-detail__head div.right {
    color: var(--body_text_primary)
}

.menu-detail__head div.right span {
    margin-right: 12px
}

.menu-detail .trade-setting {
    height: calc(100vh - 109px);
    top: 109px
}

.menu-detail .trade-setting__body {
    width: 100%;
    background-color: var(--background_color);
    padding-top: 0
}

.menu-detail .trade-setting-light {
    height: calc(100vh - 109px);
    top: 109px
}

.menu-detail .trade-setting-light__body {
    width: 100%;
    background-color: var(--background_color);
    padding-top: 0
}

.menu-pattern-right {
    position: absolute;
    right: 0;
    bottom: 0
}

@media (min-width: 834px) {
    .menu-pattern-right {
        width: 180px
    }
}

@media (min-width: 992px) {
    .menu-pattern-right {
        width: unset
    }
}

.menu-pattern-left {
    position: absolute;
    left: 0;
    top: 40%
}

@media (min-width: 834px) {
    .menu-pattern-left {
        width: 80px
    }
}

@media (min-width: 992px) {
    .menu-pattern-left {
        width: unset
    }
}

.menu-account {
    width: 100vw;
    padding-bottom: 120px
}

@media (min-width: 834px) {
    .menu-account {
        padding: 108px 25% 12px !important
    }
}

@media (min-width: 992px) {
    .menu-account {
        padding: 108px 35% 12px !important
    }
}

.menu-account__body {
    width: 100%
}

@media (min-width: 834px) {
    .menu-account__body {
        background-color: #222;
        border-radius: 16px;
        padding-bottom: 16px
    }
}

.menu-account__body .button2 {
    width: calc(100% - 32px);
    margin: 32px 16px 16px
}

.menu-account__body div.item {
    width: 100%;
    padding-right: 16px
}

.menu-account__body div.key {
    width: 100%;
    text-align: right;
    color: #666;
    margin-top: 8px
}

.menu-account__body div.val {
    width: 100%;
    text-align: right;
    color: #d8d8d8
}

.menu-account__head {
    width: 100%;
    border-bottom: 1px solid #333;
    color: #fff;
    padding: 16px 16px 8px
}

.menu-account__head span {
    margin-right: 8px
}

.menu-account__head img {
    width: 16px
}

.menu-account__head button {
    position: absolute;
    left: 16px;
    top: 16px;
    cursor: pointer;
    background-color: unset;
    outline: unset;
    border: unset;
    width: 24px;
    height: 24px
}

.menu-account__head button img {
    width: 24px;
    height: 24px
}

.menu-account__commission_details {
    padding: 16px;
    margin-top: 24px;
    border-top: 1px solid var(--border_line_quinary);
    border-bottom: 1px solid var(--border_line_quinary)
}

@media (min-width: 834px) {
    .menu-account__commission_details {
        border-bottom: none
    }
}

.menu-account__label {
    color: var(--text_on_disable_primary);
    font-size: 12px;
    font-weight: 500
}

.menu-account__value {
    color: var(--text_on_disable_primary);
    font-weight: 400;
    font-size: 12px;
    display: flex;
    gap: 8px
}

.menu-account__value-items {
    display: flex;
    align-items: center;
    gap: 4px
}

.menu-account__value-items span {
    color: var(--body_text_primary);
    font-weight: 600;
    min-width: 30px;
    margin-left: 8px
}

.menu-account__commisson_action {
    color: var(--body_text_accent);
    font-family: IRANYekanX;
    font-size: 14px;
    font-weight: 500;
    margin-top: 16px
}

.menu-account-light {
    width: 100vw;
    padding-bottom: 120px;
    background-color: #e9e9e9
}

@media (min-width: 834px) {
    .menu-account-light {
        padding: 108px 25% 12px !important
    }
}

@media (min-width: 992px) {
    .menu-account-light {
        padding: 108px 35% 12px !important
    }
}

.menu-account-light__body {
    width: 100%
}

@media (min-width: 834px) {
    .menu-account-light__body {
        background-color: #f2f2f2;
        border-radius: 16px;
        padding-bottom: 16px
    }
}

.menu-account-light__body .button2 {
    width: calc(100% - 32px);
    margin: 32px 16px 16px;
    background-color: #e9e9e9
}

.menu-account-light__body div.item {
    width: 100%;
    padding-right: 16px
}

.menu-account-light__body div.key {
    width: 100%;
    text-align: right;
    color: #666;
    margin-top: 8px
}

.menu-account-light__body div.val {
    width: 100%;
    text-align: right;
    color: #1a1a1a
}

.menu-account-light__head {
    width: 100%;
    border-bottom: 1px solid #b2b2b2;
    color: #1a1a1a;
    padding: 16px 16px 8px
}

.menu-account-light__head span {
    margin-right: 8px
}

.menu-account-light__head img {
    width: 16px
}

.menu-account-light__head button {
    position: absolute;
    left: 16px;
    top: 16px;
    cursor: pointer;
    background-color: unset;
    outline: unset;
    border: unset;
    width: 24px;
    height: 24px
}

.menu-account-light__head button img {
    width: 24px;
    height: 24px
}

.menu-account-light__commission_details {
    padding: 16px;
    margin-top: 24px;
    border-top: 1px solid var(--border_line_quinary);
    border-bottom: 1px solid var(--border_line_quinary)
}

@media (min-width: 834px) {
    .menu-account-light__commission_details {
        border-bottom: none
    }
}

.menu-account-light__label {
    color: var(--text_on_disable_primary);
    font-size: 12px;
    font-weight: 500
}

.menu-account-light__value {
    color: var(--text_on_disable_primary);
    font-weight: 400;
    font-size: 12px;
    display: flex;
    gap: 8px
}

.menu-account-light__value-items span {
    color: var(--body_text_primary);
    font-weight: 600;
    margin-right: 4px
}

.menu-account-light__commisson_action {
    color: var(--body_text_accent);
    font-family: IRANYekanX;
    font-size: 14px;
    font-weight: 500;
    margin-top: 16px
}

.menu-finance {
    width: 100vw
}

@media (min-width: 834px) {
    .menu-finance {
        padding: 108px 25% 12px !important
    }
}

@media (min-width: 992px) {
    .menu-finance {
        padding: 108px 35% 12px !important
    }
}

.menu-finance .switch3 {
    padding-top: 20px;
    margin-bottom: 0
}

.menu-finance__body {
    width: 100%;
    height: 100%
}

@media (min-width: 834px) {
    .menu-finance__body {
        background-color: #222;
        border-radius: 16px
    }
}

.menu-finance__body__close {
    position: absolute;
    left: 16px;
    top: 16px;
    cursor: pointer;
    background-color: unset;
    outline: unset;
    border: unset
}

.menu-finance__wrapper {
    width: 100%;
    padding: 16px;
    height: calc(100% - 58px)
}

.menu-finance__list {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    padding-bottom: 120px
}

@media (min-width: 834px) {
    .menu-finance__list {
        height: calc(100% - 72px);
        padding-bottom: 0
    }
}

.menu-finance__empty {
    width: 100%;
    height: 100%
}

.menu-finance__empty img {
    width: 80px
}

@media (min-width: 834px) {
    .menu-finance__empty img {
        width: 100px
    }
}

.menu-finance__card {
    width: 100%;
    margin-bottom: 8px;
    background-color: #222;
    border-radius: 8px;
    padding: 8px;
    height: 72px
}

@media (min-width: 834px) {
    .menu-finance__card {
        background-color: #333
    }
}

.menu-finance__card div.bank-info {
    color: #fff;
    padding-right: 8px;
    border-right: 1px dashed #333;
    height: 100%;
    min-width: 80px
}

@media (min-width: 834px) {
    .menu-finance__card div.bank-info {
        border-right: 1px dashed #666
    }
}

.menu-finance__card div.bank-info img {
    width: 30px;
    max-height: 30px
}

.menu-finance__card div.value {
    color: #fff;
    text-align: left;
    flex: 1;
    padding-left: 8px
}

@media (min-width: 834px) {
    .menu-finance__card div.value {
        font-size: 14px
    }
}

.menu-finance__card div.right button {
    background-color: unset;
    border: unset;
    outline: unset;
    width: 24px;
    height: 24px
}

.menu-finance__card div.right span {
    margin-right: 8px
}

.menu-finance__card div.right img {
    cursor: pointer
}

.menu-finance-light {
    width: 100vw;
    background-color: #e9e9e9
}

@media (min-width: 834px) {
    .menu-finance-light {
        padding: 108px 25% 12px !important
    }
}

@media (min-width: 992px) {
    .menu-finance-light {
        padding: 108px 35% 12px !important
    }
}

.menu-finance-light .switch3 {
    padding-top: 20px;
    margin-bottom: 0
}

.menu-finance-light__body {
    width: 100%;
    height: 100%
}

@media (min-width: 834px) {
    .menu-finance-light__body {
        background-color: #f2f2f2;
        border-radius: 16px
    }
}

.menu-finance-light__body__close {
    position: absolute;
    left: 16px;
    top: 16px;
    cursor: pointer;
    background-color: unset;
    outline: unset;
    border: unset
}

.menu-finance-light__wrapper {
    width: 100%;
    padding: 16px;
    height: calc(100% - 58px)
}

.menu-finance-light__list {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    padding-bottom: 120px
}

@media (min-width: 834px) {
    .menu-finance-light__list {
        height: calc(100% - 72px);
        padding-bottom: 0
    }
}

.menu-finance-light__empty {
    width: 100%;
    height: 100%
}

.menu-finance-light__empty img {
    width: 80px
}

@media (min-width: 834px) {
    .menu-finance-light__empty img {
        width: 100px
    }
}

.menu-finance-light__card {
    width: 100%;
    margin-bottom: 8px;
    background-color: #fff;
    border-radius: 8px;
    padding: 8px;
    height: 72px
}

.menu-finance-light__card div.bank-info {
    color: #1a1a1a;
    padding-right: 8px;
    border-right: 1px dashed #b2b2b2;
    height: 100%;
    min-width: 80px
}

.menu-finance-light__card div.bank-info img {
    width: 30px;
    max-height: 30px
}

.menu-finance-light__card div.value {
    color: #1a1a1a;
    text-align: left;
    flex: 1;
    padding-left: 8px
}

@media (min-width: 834px) {
    .menu-finance-light__card div.value {
        font-size: 14px
    }
}

.menu-finance-light__card div.right button {
    background-color: unset;
    border: unset;
    outline: unset;
    width: 24px;
    height: 24px
}

.menu-finance-light__card div.right span {
    margin-right: 8px
}

.menu-finance-light__card div.right img {
    cursor: pointer
}

.menu-security {
    width: 100vw;
    height: 100vh;
    overflow-x: hidden
}

@media (min-width: 834px) {
    .menu-security {
        padding: 108px 25% 12px !important
    }
}

@media (min-width: 992px) {
    .menu-security {
        padding: 108px 35% 12px !important
    }
}

.menu-security .switch3 {
    padding-top: 20px;
    margin-bottom: 0
}

.menu-security__body {
    width: 100%;
    height: 100%
}

@media (min-width: 834px) {
    .menu-security__body {
        background-color: #222;
        border-radius: 16px;
        height: calc(100% - 100px)
    }
}

.menu-security__body__close {
    position: absolute;
    left: 16px;
    top: 16px;
    cursor: pointer;
    background-color: unset;
    outline: unset;
    border: unset
}

.menu-security__wrapper {
    width: 100%;
    padding: 16px;
    height: calc(100% - 58px)
}

.menu-security__list {
    width: 100%;
    height: 100%;
    overflow-y: scroll
}

.menu-security__history {
    width: 100%;
    height: 100%
}

.menu-security__history__head {
    width: 100%;
    background-color: #222;
    border-radius: 8px 8px 0 0;
    height: 48px;
    color: #d8d8d8
}

@media (min-width: 834px) {
    .menu-security__history__head {
        background-color: #333
    }
}

.menu-security__history__head div {
    width: 30%
}

.menu-security__history__lazy {
    width: 100%;
    height: 48px;
    border-bottom: 1px solid #333;
    padding: 10px
}

.menu-security__history__list {
    width: 100%;
    overflow-y: scroll;
    height: calc(100% - 48px);
    padding-bottom: 120px
}

@media (min-width: 834px) {
    .menu-security__history__list {
        padding-bottom: 0
    }
}

.menu-security__history__card {
    width: 100%;
    color: #fff;
    border-bottom: 1px solid #333;
    height: 52px
}

.menu-security__history__card div {
    width: 30%
}

.menu-security__history__card div.src {
    text-align: center
}

.menu-security__history__card div.green {
    color: #4ef09d
}

.menu-security__history__card div.red {
    color: #ff5a5a
}

.menu-security__history__card div.time span {
    line-height: 15px
}

.menu-security__change-password {
    width: 100%;
    height: 100%
}

.menu-security__change-password div.pass-hint {
    width: 100%;
    text-align: right;
    direction: rtl;
    color: #b2b2b2
}

.menu-security__change-password div.pass-hint span {
    margin-bottom: 4px
}

.menu-security__change-password div.pass-hint span.enable {
    color: #4ef09d
}

.menu-security__two-factor {
    width: 100%;
    height: 100%;
    overflow-y: scroll
}

.menu-security__two-factor div.subhead {
    color: #fff;
    text-align: justify;
    margin: 16px 0
}

.menu-security__two-factor__body {
    width: 100%
}

.menu-security__two-factor__options {
    width: 100%;
    margin-bottom: 40px
}

.menu-security__two-factor__options.disable {
    opacity: .3
}

.menu-security__two-factor__options div.item {
    width: 100%;
    margin-top: 24px
}

.menu-security__two-factor__options div.right {
    align-items: flex-start
}

.menu-security__two-factor__options div div.subtitle {
    color: #b2b2b2;
    padding-right: 24px
}

.menu-security__two-factor__switch-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.menu-security__two-factor__switch-wrapper span {
    color: #fff
}

.menu-security__google-auth {
    width: 100vw;
    height: 100vh;
    background-color: #3a3a3ad1;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 16px
}

@media (min-width: 834px) {
    .menu-security__google-auth {
        padding: 0 30%
    }
}

@media (min-width: 992px) {
    .menu-security__google-auth {
        padding: 0 35%
    }
}

.menu-security__google-auth__body {
    width: 100%;
    padding: 16px;
    background-color: #1a1a1a;
    border-radius: 16px
}

.menu-security__google-auth div.close {
    width: 100%
}

.menu-security__google-auth div.close img {
    cursor: pointer
}

.menu-security__google-auth div.codeimg {
    width: 100px;
    height: 100px;
    background-color: #fff;
    padding: 4px;
    border-radius: 4px
}

.menu-security__google-auth div.desc {
    width: 100%;
    color: #fff;
    text-align: justify;
    margin-top: 24px
}

.menu-security__google-auth div.codetext {
    margin: 8px 0 16px;
    background-color: #333;
    border-radius: 16px;
    color: #fff;
    height: 40px;
    padding: 0 8px;
    cursor: pointer
}

.menu-security__google-auth div.codetext img {
    margin-right: 8px
}

.menu-security__google-auth div.input-title {
    width: 100%;
    color: #fff;
    text-align: right
}

.menu-security-light {
    width: 100vw;
    height: 100vh;
    background-color: #e9e9e9
}

@media (min-width: 834px) {
    .menu-security-light {
        padding: 108px 25% 12px !important;
        overflow: hidden
    }
}

@media (min-width: 992px) {
    .menu-security-light {
        padding: 108px 35% 12px !important
    }
}

.menu-security-light .switch3 {
    padding-top: 20px;
    margin-bottom: 0
}

.menu-security-light__body {
    width: 100%;
    height: 100%
}

@media (min-width: 834px) {
    .menu-security-light__body {
        background-color: #f2f2f2;
        border-radius: 16px;
        height: calc(100% - 100px)
    }
}

.menu-security-light__body__close {
    position: absolute;
    left: 16px;
    top: 16px;
    cursor: pointer;
    background-color: unset;
    outline: unset;
    border: unset
}

.menu-security-light__wrapper {
    width: 100%;
    padding: 16px;
    height: calc(100% - 58px)
}

.menu-security-light__list {
    width: 100%;
    height: 100%;
    overflow-y: scroll
}

.menu-security-light__history {
    width: 100%;
    height: 100%
}

.menu-security-light__history__head {
    width: 100%;
    background-color: #d8d8d8;
    border-radius: 8px 8px 0 0;
    height: 48px;
    color: #333
}

.menu-security-light__history__head div {
    width: 30%
}

.menu-security-light__history__lazy {
    width: 100%;
    height: 48px;
    border-bottom: 1px solid #d8d8d8;
    padding: 10px
}

.menu-security-light__history__list {
    width: 100%;
    overflow-y: scroll;
    height: calc(100% - 48px);
    padding-bottom: 120px
}

@media (min-width: 834px) {
    .menu-security-light__history__list {
        padding-bottom: 0
    }
}

.menu-security-light__history__card {
    width: 100%;
    color: #1a1a1a;
    border-bottom: 1px solid #d8d8d8;
    height: 52px
}

.menu-security-light__history__card div {
    width: 30%
}

.menu-security-light__history__card div.src {
    text-align: center
}

.menu-security-light__history__card div.green {
    color: #02a67f
}

.menu-security-light__history__card div.red {
    color: #ff5a5a
}

.menu-security-light__history__card div.time span {
    line-height: 15px
}

.menu-security-light__change-password {
    width: 100%;
    height: 100%
}

.menu-security-light__change-password div.pass-hint {
    width: 100%;
    text-align: right;
    direction: rtl;
    color: #666
}

.menu-security-light__change-password div.pass-hint span {
    margin-bottom: 4px
}

.menu-security-light__change-password div.pass-hint span.enable {
    color: #02a67f
}

.menu-security-light__two-factor {
    width: 100%;
    height: 100%;
    overflow-y: scroll
}

.menu-security-light__two-factor div.subhead {
    color: #1a1a1a;
    text-align: justify;
    margin: 16px 0
}

.menu-security-light__two-factor__body {
    width: 100%
}

.menu-security-light__two-factor__options {
    width: 100%;
    margin-bottom: 40px
}

.menu-security-light__two-factor__options.disable {
    opacity: .3
}

.menu-security-light__two-factor__options div.item {
    width: 100%;
    margin-top: 24px
}

.menu-security-light__two-factor__options div.right {
    align-items: flex-start
}

.menu-security-light__two-factor__options div div.subtitle {
    color: #666;
    padding-right: 24px
}

.menu-security-light__two-factor__switch-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.menu-security-light__two-factor__switch-wrapper span {
    color: #1a1a1a
}

.menu-security-light__google-auth {
    width: 100vw;
    height: 100vh;
    background-color: #1a1a1ab2;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 16px
}

@media (min-width: 834px) {
    .menu-security-light__google-auth {
        padding: 0 30%
    }
}

@media (min-width: 992px) {
    .menu-security-light__google-auth {
        padding: 0 35%
    }
}

.menu-security-light__google-auth__body {
    width: 100%;
    padding: 16px;
    background-color: #f2f2f2;
    border-radius: 16px
}

.menu-security-light__google-auth div.close {
    width: 100%
}

.menu-security-light__google-auth div.close img {
    cursor: pointer
}

.menu-security-light__google-auth div.codeimg {
    width: 100px;
    height: 100px;
    background-color: #f2f2f2;
    padding: 4px;
    border-radius: 4px
}

.menu-security-light__google-auth div.desc {
    width: 100%;
    color: #1a1a1a;
    text-align: justify;
    margin-top: 24px
}

.menu-security-light__google-auth div.codetext {
    margin: 8px 0 16px;
    background-color: #e1e1e1;
    border-radius: 16px;
    color: #1a1a1a;
    height: 40px;
    padding: 0 8px;
    cursor: pointer
}

.menu-security-light__google-auth div.codetext img {
    margin-right: 8px
}

.menu-security-light__google-auth div.input-title {
    width: 100%;
    color: #1a1a1a;
    text-align: right
}

.api-page {
    min-height: 100vh
}

.api-page__top {
    width: 100%;
    background-color: var(--surface_primary);
    padding: 32px 16px
}

@media (min-width: 834px) {
    .api-page__top {
        padding: 40px 35%
    }
}

@media (min-width: 992px) {
    .api-page__top {
        padding: 56px 35%
    }
}

@media (min-width: 834px) {
    .api-page__top .button1 {
        margin-top: 24px
    }
}

.api-page__top img.pattern-right {
    position: absolute;
    right: 0;
    height: 60%
}

@media (min-width: 992px) {
    .api-page__top img.pattern-right {
        height: 70%;
        bottom: 40px
    }
}

.api-page__top img.pattern-left {
    position: absolute;
    top: 0;
    left: 0;
    height: 70%
}

@media (min-width: 992px) {
    .api-page__top img.pattern-left {
        height: 100%
    }
}

.api-page__top div.title {
    width: 100%;
    text-align: center;
    color: var(--body_text_primary)
}

.api-page__top div.input-title {
    width: 100%;
    text-align: right;
    color: var(--body_text_primary);
    margin-bottom: 8px
}

@media (min-width: 834px) {
    .api-page__top div.input-title {
        margin-top: 40px
    }
}

@media (min-width: 992px) {
    .api-page__top div.input-title {
        margin-top: 48px;
        font-size: 14px
    }
}

.api-page__doc {
    width: 100%;
    margin-top: 20px;
    padding: 0 16px;
    cursor: pointer
}

.api-page__doc span {
    margin-right: 8px;
    color: var(--body_text_accent)
}

@media (min-width: 834px) {
    .api-page__doc {
        justify-content: center !important;
        margin-top: 24px
    }
}

.api-page__list-head {
    width: 100%;
    margin-top: 20px;
    color: var(--body_text_primary)
}

@media (min-width: 834px) {
    .api-page__list-head {
        margin-top: 48px;
        justify-content: flex-start;
        padding: 0 8%
    }
}

.api-page__list {
    margin-top: 8px;
    padding: 0 16px 100px;
    width: 100%
}

@media (min-width: 834px) {
    .api-page__list {
        padding: 0 8% 100px;
        margin-top: 16px
    }
}

@media (min-width: 992px) {
    .api-page__list {
        padding: 0 10% 100px
    }
}

.api-page__list img {
    cursor: pointer
}

.api-page__list div.item {
    width: 100%;
    margin-bottom: 8px;
    background-color: var(--surface_primary);
    border-radius: 8px
}

.api-page__list div.inside {
    width: 100%
}

.api-page__list div.top {
    width: 100%;
    padding: 8px 12px;
    border-bottom: 1px solid var(--surface_senary);
    color: var(--body_text_primary)
}

.api-page__list div.top button {
    background-color: unset;
    border: unset;
    outline: unset;
    width: 24px;
    height: 24px;
    margin-right: 12px
}

.api-page__list div.bottom {
    width: 100%;
    padding: 8px 12px
}

@media (min-width: 834px) {
    .api-page__list div.bottom {
        display: flex;
        flex-direction: row-reverse;
        justify-content: flex-end
    }
}

.api-page__list div.bottom div.api-key {
    color: var(--body_text_primary);
    width: 100%
}

.api-page__list div.bottom div.key {
    width: 100%;
    color: var(--card_desc);
    direction: rtl
}

@media (min-width: 834px) {
    .api-page__list div.bottom div.key {
        width: calc(100% - 50px);
        justify-content: flex-start
    }
}

.api-page__list div.bottom div.key div {
    margin-right: 8px;
    direction: ltr;
    width: calc(100% - 30px);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: inline-block
}

.api-page__empty {
    width: 100%;
    padding: 80px 0
}

.api-page__empty img {
    width: 80px
}

@media (min-width: 834px) {
    .api-page__empty {
        padding: 100px 0
    }

    .api-page__empty img {
        width: 120px
    }
}

.api-page__skeleton-wrapper {
    width: 100%;
    padding: 0 16px;
    margin-top: 16px
}

@media (min-width: 834px) {
    .api-page__skeleton-wrapper {
        padding: 0 8%
    }
}

.api-page__skeleton-wrapper__desktop {
    display: none
}

@media (min-width: 834px) {
    .api-page__skeleton-wrapper__desktop {
        display: block;
        margin-bottom: 8px
    }
}

.api-page__skeleton-wrapper__mobile {
    display: block;
    margin-bottom: 8px
}

@media (min-width: 834px) {
    .api-page__skeleton-wrapper__mobile {
        display: none
    }
}

.api-detail-page {
    width: 100vw;
    height: 100vh;
    overflow-y: scroll
}

@media (min-width: 834px) {
    .api-detail-page {
        position: fixed;
        top: 0;
        left: 0;
        background-color: var(--popup-bg-color);
        padding: 0 30%;
        display: flex;
        align-items: center;
        justify-content: center
    }
}

@media (min-width: 992px) {
    .api-detail-page {
        padding: 0 37%;
        padding-top: 0 !important
    }
}

.api-detail-page__body {
    width: 100%;
    padding: 16px
}

@media (min-width: 834px) {
    .api-detail-page__body {
        background-color: var(--surface_nonary);
        border-radius: 16px
    }
}

.api-detail-page__head {
    width: 100%;
    color: var(--body_text_primary);
    margin-bottom: 24px
}

.api-detail-page__head button {
    background-color: unset;
    border: unset;
    outline: unset;
    position: absolute;
    left: 0;
    cursor: pointer
}

.api-detail-page div.input-title {
    width: 100%;
    text-align: right;
    color: var(--body_text_primary);
    margin-bottom: 8px
}

.api-detail-page div.input-row {
    width: 100%
}

.api-detail-page div.input-row .button1 {
    width: 70px;
    margin: 0
}

.api-detail-page div.input-row .input1,
.api-detail-page div.input-row .input1-light {
    width: calc(100% - 88px);
    margin: 0
}

.api-detail-page div.ip-list {
    width: 100%;
    margin-top: 16px;
    flex-wrap: wrap
}

.api-detail-page div.ip-list button {
    background-color: unset;
    border: unset;
    outline: unset;
    width: 16px;
    height: 16px;
    margin-right: 8px
}

.api-detail-page div.ip-list div {
    padding: 4px;
    color: var(--body_text_primary);
    background-color: var(--surface_unenary);
    border-radius: 8px;
    margin-left: 8px;
    margin-bottom: 8px
}

.api-detail-page div.ip-list div img {
    width: 16px;
    cursor: pointer
}

.api-keys {
    width: 100vw;
    height: 100vh;
    background-color: var(--popup-bg-color);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 16px
}

@media (min-width: 834px) {
    .api-keys {
        padding: 0 30%
    }
}

@media (min-width: 992px) {
    .api-keys {
        padding: 0 38%
    }
}

.api-keys__body {
    width: 100%;
    background-color: var(--surface_nonary);
    border-radius: 16px;
    padding: 16px 16px 24px
}

.api-keys__body div.close {
    width: 100%
}

.api-keys__body div.close img {
    cursor: pointer
}

.api-keys__keys {
    width: 100%
}

.api-keys__keys div.item {
    width: 100%;
    margin-top: 24px
}

.api-keys__keys div.key-title {
    width: 100%;
    color: var(--body_text_primary)
}

.api-keys__keys div.key-title img {
    margin-right: 4px
}

.api-keys__keys div.key {
    width: 100%;
    color: var(--body_text_quinary)
}

.api-keys__keys div.key div {
    direction: ltr;
    width: calc(100% - 30px);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: inline-block
}

.not-found {
    width: 100vw;
    height: 100vh
}

.not-found__body {
    padding: 0 16px 40px
}

@media (min-width: 834px) {
    .not-found__body {
        padding: 0 8%
    }
}

@media (min-width: 992px) {
    .not-found__body {
        padding: 0 10%
    }
}

.not-found__body .button1 {
    margin: 32px 0;
    width: 155px
}

.not-found__body img {
    width: 60%;
    margin-top: 40px
}

@media (min-width: 834px) {
    .not-found__body img {
        width: 300px
    }
}

@media (min-width: 992px) {
    .not-found__body img {
        width: 350px
    }
}

.not-found__body div.title {
    color: var(--body_text_primary);
    margin-top: 32px;
    width: 100%
}

.not-found__body div.subtitle {
    color: var(--body_text_primary);
    margin-top: 16px;
    width: 100%
}

.rotate-page {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    color: var(--body_text_primary);
    text-align: center;
    background-color: var(--background_color)
}

.rotate-page div {
    text-align: center;
    line-height: 35px
}

.rotate-page div.title {
    margin-top: 32px
}

.rotate-page img.logo {
    margin-top: 56px;
    max-width: 50%
}

@media (min-width: 992px) {
    .rotate-page img.logo {
        max-width: 50%
    }
}

.qr-scanner {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #222;
    z-index: 100
}

.qr-scanner__close {
    background-color: unset;
    border: unset;
    outline: unset;
    position: absolute;
    top: 16px;
    right: 16px
}

.qr-scanner p.title {
    color: #fff;
    margin-top: 16px
}

.app-download {
    width: 100vw
}

.app-download__wrapper {
    padding: 0 16px 40px
}

@media (min-width: 834px) {
    .app-download__wrapper {
        padding: 0 8%
    }
}

@media (min-width: 992px) {
    .app-download__wrapper {
        padding: 0 10%
    }
}

.app-download img.image {
    width: 50%
}

@media (min-width: 1450px) {
    .app-download img.image {
        width: 40%
    }
}

.app-download__top {
    width: 100%;
    padding: 48px 10% 120px 48px
}

.app-download__data {
    width: 30%;
    align-items: flex-start
}

.app-download__data h1.title {
    color: var(--body_text_primary);
    width: 200%
}

.app-download__data p.sub-title {
    color: var(--surface_septenary);
    margin-top: 24px
}

.app-download__download {
    width: 100%;
    flex-wrap: wrap;
    margin-top: 16px
}

.app-download__download div {
    width: 50%;
    margin-top: 24px;
    cursor: pointer
}

.app-download__download div img.android {
    margin-right: 12px
}

.app-download__scan {
    width: 100%;
    margin-top: 64px
}

.app-download__scan__text {
    color: var(--surface_septenary)
}

.app-download__scan__code {
    background-color: var(--body_text_tertiary);
    width: 100px;
    height: 100px;
    padding: 4px;
    border-radius: 4px
}

.payment {
    width: 100vw
}

.payment .popup4 p.title {
    color: #ff5a5a !important
}

.payment.succeed .popup4 p.title {
    color: #fff !important
}

.payment__body {
    padding: 16px 16px 40px
}

@media (min-width: 834px) {
    .payment__body {
        padding: 26px 8%
    }
}

@media (min-width: 992px) {
    .payment__body {
        padding: 56px 10% 100px
    }
}

.payment-light {
    width: 100vw;
    background-color: #e9e9e9
}

.payment-light .popup4-light p.title {
    color: #ff5a5a !important
}

.payment-light.succeed .popup4-light p.title {
    color: #1a1a1a !important
}

.payment-light__body {
    padding: 16px 16px 40px
}

@media (min-width: 834px) {
    .payment-light__body {
        padding: 26px 8%
    }
}

@media (min-width: 992px) {
    .payment-light__body {
        padding: 56px 10% 100px
    }
}

.price-alert {
    width: 100vw;
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    background-color: #1a1a1a
}

@media (min-width: 834px) {
    .price-alert {
        background-color: #3a3a3ad1;
        padding: 0 30%;
        display: flex;
        align-items: center;
        padding-top: 0 !important
    }
}

@media (min-width: 992px) {
    .price-alert {
        padding: 0 38%
    }
}

.price-alert .switch1 {
    width: 100%;
    border: unset;
    background-color: #333;
    margin-bottom: 16px;
    height: 48px
}

.price-alert .switch1 div {
    border: unset !important;
    border-radius: 8px !important
}

.price-alert__close {
    width: 100%;
    margin-bottom: 8px
}

.price-alert__close img {
    cursor: pointer
}

.price-alert__body {
    width: 100%;
    height: 100%;
    padding: 16px
}

@media (min-width: 834px) {
    .price-alert__body {
        padding: 16px;
        border-radius: 16px;
        background-color: #1a1a1a;
        height: 600px;
        max-height: 97%
    }
}

.price-alert__detail {
    width: 100%;
    height: calc(100% - 48px);
    overflow-y: scroll;
    padding-bottom: 120px
}

@media (min-width: 834px) {
    .price-alert__detail {
        padding-bottom: 0
    }
}

.price-alert__list {
    width: 100%;
    height: calc(100% - 54px);
    overflow-y: scroll;
    padding-bottom: 120px
}

@media (min-width: 834px) {
    .price-alert__list {
        padding-bottom: 0
    }
}

.price-alert__list__empty {
    width: 100%;
    height: 100%
}

.price-alert__list__empty img {
    width: 80px
}

.price-alert__list__item {
    width: 100%;
    background-color: #222;
    margin-bottom: 8px;
    border-radius: 8px;
    padding: 12px
}

.price-alert__list__item div.options button {
    background-color: unset;
    border: unset;
    outline: unset;
    margin-right: 12px;
    width: 24px;
    height: 24px
}

.price-alert__list__item div.options button.edit,
.price-alert__list__item div.options button.edit img {
    width: 20px;
    height: 20px
}

.price-alert__list__item div.options img {
    cursor: pointer
}

.price-alert__list__item div.market {
    color: #fff
}

.price-alert__list__item div.bottom {
    color: #b2b2b2;
    margin-top: 4px
}

.price-alert__list__item div.bottom div.active {
    font-size: 12px;
    color: #ff5a5a
}

.price-alert__list__item div.bottom div.active.is-active {
    color: #4ef09d
}

.price-alert__input-row,
.price-alert__input-item {
    width: 100%
}

.price-alert__input-title {
    width: 100%;
    color: #fff;
    margin-bottom: 8px
}

.price-alert__media {
    width: 100%;
    margin-bottom: 16px
}

.price-alert__media .tick-button {
    margin-right: 12px
}

.price-alert__media div.title {
    color: #fff
}

.price-alert__buttons {
    width: 100%;
    margin-top: 32px
}

.price-alert__buttons .button1,
.price-alert__buttons .button2 {
    width: calc((100% - 16px)/2)
}

.price-alert-light {
    width: 100vw;
    position: fixed;
    z-index: 101;
    top: 0;
    left: 0;
    background-color: #e9e9e9
}

@media (min-width: 834px) {
    .price-alert-light {
        background-color: #1a1a1ab2;
        padding: 0 30%;
        display: flex;
        align-items: center;
        padding-top: 0 !important
    }
}

@media (min-width: 992px) {
    .price-alert-light {
        padding: 0 38%
    }
}

.price-alert-light .switch1 {
    width: 100%;
    border: unset;
    background-color: #fff;
    margin-bottom: 16px;
    height: 48px
}

.price-alert-light .switch1 div {
    border: unset !important;
    border-radius: 8px !important
}

.price-alert-light__close {
    width: 100%;
    margin-bottom: 8px
}

.price-alert-light__close img {
    cursor: pointer
}

.price-alert-light__body {
    width: 100%;
    height: 100%;
    padding: 16px
}

@media (min-width: 834px) {
    .price-alert-light__body {
        padding: 16px;
        border-radius: 16px;
        background-color: #f2f2f2;
        height: 600px;
        max-height: 97%
    }
}

.price-alert-light__detail {
    width: 100%;
    height: calc(100% - 48px);
    overflow-y: scroll;
    padding-bottom: 120px
}

@media (min-width: 834px) {
    .price-alert-light__detail {
        padding-bottom: 0
    }
}

.price-alert-light__list {
    width: 100%;
    height: calc(100% - 54px);
    overflow-y: scroll;
    padding-bottom: 120px
}

@media (min-width: 834px) {
    .price-alert-light__list {
        padding-bottom: 0
    }
}

.price-alert-light__list__empty {
    width: 100%;
    height: 100%
}

.price-alert-light__list__empty img {
    width: 80px
}

.price-alert-light__list__item {
    width: 100%;
    background-color: #fff;
    margin-bottom: 8px;
    border-radius: 8px;
    padding: 12px
}

.price-alert-light__list__item div.options button {
    background-color: unset;
    border: unset;
    outline: unset;
    margin-right: 12px;
    width: 24px;
    height: 24px
}

.price-alert-light__list__item div.options button.edit,
.price-alert-light__list__item div.options button.edit img {
    width: 20px;
    height: 20px
}

.price-alert-light__list__item div.options img {
    cursor: pointer
}

.price-alert-light__list__item div.market {
    color: #1a1a1a
}

.price-alert-light__list__item div.bottom {
    color: #666;
    margin-top: 4px
}

.price-alert-light__list__item div.bottom div.active {
    font-size: 12px;
    color: #ff5a5a
}

.price-alert-light__list__item div.bottom div.active.is-active {
    color: #02a67f
}

.price-alert-light__input-row,
.price-alert-light__input-item {
    width: 100%
}

.price-alert-light__input-title {
    width: 100%;
    color: #1a1a1a;
    margin-bottom: 8px
}

.price-alert-light__media {
    width: 100%;
    margin-bottom: 16px
}

.price-alert-light__media .tick-button {
    margin-right: 12px
}

.price-alert-light__media div.title {
    color: #1a1a1a
}

.price-alert-light__buttons {
    width: 100%;
    margin-top: 32px
}

.price-alert-light__buttons .button1 {
    width: calc((100% - 16px)/2)
}

.price-alert-light__buttons .button2 {
    width: calc((100% - 16px)/2);
    background-color: #e9e9e9
}

@media (min-width: 834px) {
    .price-alert-light__buttons .button2 {
        background-color: #f2f2f2
    }
}

.ios-dl {
    width: 100vw
}

.ios-dl__body {
    padding: 64px 16px 40px
}

.ios-dl__logo {
    width: 100%
}

.ios-dl__logo img {
    width: 80px
}

.ios-dl__title {
    color: var(--body_text_primary);
    margin-top: 40px;
    width: 100%;
    text-align: center
}

.ios-dl__list {
    width: 100%;
    margin-top: 64px
}

.ios-dl__item {
    width: 100%;
    margin-bottom: 24px
}

.ios-dl__item span {
    color: var(--body_text_primary);
    margin-right: 16px
}

.ios-dl__item div.icon {
    width: 40px;
    height: 40px;
    background-color: var(--background_card);
    border-radius: 8px
}

.ios-dl__item div.text {
    margin-right: 16px
}

.ios-dl__item div.text span {
    margin: 0
}

.ios-dl__item div.text span.btn {
    color: var(--body_text_accent);
    margin: 0 2px
}

.update-page {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    background-color: #1a1a1a;
    justify-content: flex-start;
    color: #fff;
    text-align: center;
    padding: 16px
}

@media (min-width: 834px) {
    .update-page {
        padding: 0 35%;
        justify-content: center;
        background-color: #3a3a3ad1
    }
}

.update-page__body {
    width: 100%;
    height: 100%;
    background-color: #1a1a1a
}

@media (min-width: 834px) {
    .update-page__body {
        border-radius: 16px;
        height: unset;
        padding: 16px 16px 24px
    }
}

.update-page__close {
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
    background-color: unset;
    border: unset;
    outline: unset
}

@media (min-width: 834px) {
    .update-page__close {
        top: 16px;
        left: 16px
    }
}

.update-page div.title {
    margin-top: 48px
}

@media (min-width: 834px) {
    .update-page div.title {
        margin-top: 24px
    }
}

.update-page img.logo {
    margin-top: 48px
}

@media (min-width: 834px) {
    .update-page img.logo {
        margin-top: 32px
    }
}

.update-page .button1 {
    position: absolute;
    bottom: 48px;
    right: 0
}

@media (min-width: 834px) {
    .update-page .button1 {
        position: relative;
        bottom: unset;
        margin-top: 24px;
        right: unset
    }
}

.notif-page {
    width: 100vw
}

.notif-page.popup {
    height: unset;
    position: fixed;
    left: 0;
    top: 64px;
    z-index: 150;
    border-radius: 0 0 16px;
    background-color: var(--surface_unenary);
    padding: 0 !important;
    overflow-y: hidden
}

@media (min-width: 834px) {
    .notif-page.popup {
        width: 50%
    }
}

@media (min-width: 992px) {
    .notif-page.popup {
        width: 30%
    }
}

@media (min-width: 834px) {
    .notif-page {
        overflow-y: hidden
    }
}

.notif-page__body {
    padding: 16px 0 0;
    width: 100%;
    height: 100%
}

@media (min-width: 834px) {
    .notif-page__body {
        padding: 26px 8%
    }
}

@media (min-width: 992px) {
    .notif-page__body {
        padding: 56px 10% 16px
    }
}

.notif-page__body.popup {
    padding: 32px 0 0 !important;
    min-height: 600px
}

.notif-page__body .switch3 {
    margin-bottom: 8px
}

.notif-page__body__refresh {
    position: absolute;
    left: calc(10% + 32px);
    cursor: pointer;
    z-index: 20;
    background-color: unset;
    border: unset;
    outline: unset
}

.notif-page__body__popup-options {
    position: absolute;
    top: 32px;
    left: 24px
}

.notif-page__body__popup-options button {
    background-color: unset;
    border: unset;
    outline: unset;
    width: 24px;
    height: 24px;
    margin-left: 8px
}

.notif-page__body__popup-options img {
    cursor: pointer
}

.notif-page__body__popup-options div.popup-more {
    color: var(--accent_color_secondary);
    cursor: pointer
}

.notif-page__body__count {
    position: absolute;
    top: 56px;
    left: 10%;
    color: var(--body_text_primary);
    height: 37px
}

.notif-page__body__empty {
    width: 100%;
    height: 100%
}

.notif-page__body__empty img {
    width: 80px;
    padding: 50px 0
}

@media (min-width: 834px) {
    .notif-page__body__empty img {
        width: 100px
    }

    .notif-page__body__empty.popup {
        min-height: 526px
    }
}

.notif-page__body__list {
    width: 100%;
    padding-bottom: 120px
}

@media (min-width: 834px) {
    .notif-page__body__list {
        height: calc(100% - 56px);
        padding-bottom: 16px;
        overflow-y: scroll
    }
}

.notif-page__body__more {
    width: 100%;
    color: var(--accent_color_secondary);
    margin-top: 24px
}

.notif-page__body__more img {
    margin-left: 8px;
    cursor: pointer
}

.notif-page__body__more span {
    cursor: pointer
}

.notif-page__card {
    width: 100%;
    padding: 16px;
    border-bottom: 1px solid var(--border_line_tertiary)
}

@media (min-width: 834px) {
    .notif-page__card {
        padding: 16px 32px
    }

    .notif-page__card.popup {
        padding: 16px 24px
    }
}

.notif-page__card div.row1 {
    width: 100%
}

.notif-page__card div.time {
    color: var(--body_text_secondary)
}

.notif-page__card div.time span {
    margin: 2px 4px 0
}

.notif-page__card div.right {
    color: var(--body_text_primary)
}

@media (min-width: 834px) {
    .notif-page__card div.right {
        font-size: 14px
    }
}

.notif-page__card div.right img {
    margin-left: 8px
}

.notif-page__card div.body {
    width: 100%;
    color: var(--body-text_sub)
}

@media (min-width: 834px) {
    .notif-page__card div.body {
        font-size: 14px
    }
}

.notif-page__card div.more {
    cursor: pointer;
    color: var(--accent_color_secondary);
    width: 100%;
    margin-top: -2px
}

@media (min-width: 834px) {
    .notif-page__card div.more {
        margin-top: -4px
    }
}

.knh-page {
    width: 100vw;
    overflow-x: hidden;
    padding-bottom: 120px
}

@media (min-width: 834px) {
    .knh-page {
        padding-bottom: 0
    }
}

@media (min-width: 834px) {
    .knh-page__body {
        padding: 48px 8% 100px
    }
}

@media (min-width: 992px) {
    .knh-page__body {
        padding: 48px 10% 100px
    }
}

.knh-page__body .switch3 {
    margin-bottom: 0;
    margin-top: 0;
    overflow-x: scroll;
    padding-top: 24px
}

.knh-page__body .switch3 div {
    min-width: 84px;
    margin-left: 20px
}

.knh-page__head {
    width: 100%;
    text-align: right;
    color: var(--body_text_primary)
}

@media (min-width: 992px) {
    .knh-page__head {
        font-size: 32px
    }
}

.knh-page__steaky-tab {
    width: 100%;
    position: sticky;
    top: 0;
    background-color: var(--background_color);
    z-index: 50
}

.knh-page__top {
    width: 100%;
    border-radius: 0 0 16px 16px;
    background-color: var(--surface_primary);
    padding: 30px 16px
}

@media (min-width: 834px) {
    .knh-page__top {
        margin-top: 40px;
        flex-direction: row;
        background-color: unset;
        justify-content: space-between;
        padding: 0
    }
}

@media (min-width: 992px) {
    .knh-page__top {
        margin-top: 48px
    }
}

.knh-page__top__row {
    width: 100%;
    margin-top: 16px
}

@media (min-width: 834px) {
    .knh-page__top__row {
        margin: 0;
        width: calc((84vw - 60px) / 3 * 2 + 30px)
    }
}

@media (min-width: 992px) {
    .knh-page__top__row {
        width: calc((80vw - 60px) / 3 * 2 + 30px)
    }
}

@media (min-width: 834px) {
    .knh-page__top__item {
        background-color: var(--surface_primary);
        border-radius: 16px;
        width: calc((84vw - 60px) / 3);
        padding: 16px
    }
}

@media (min-width: 992px) {
    .knh-page__top__item {
        width: calc((80vw - 60px) / 3);
        padding: 24px
    }
}

.knh-page__top__item div.key {
    color: var(--body-text_row)
}

@media (min-width: 834px) {
    .knh-page__top__item div.key {
        width: 100%;
        text-align: right
    }
}

@media (min-width: 992px) {
    .knh-page__top__item div.key {
        font-size: 14px
    }
}

.knh-page__top__item div.val {
    color: var(--body_text_primary)
}

@media (min-width: 834px) {
    .knh-page__top__item div.val {
        font-size: 16px
    }
}

@media (min-width: 992px) {
    .knh-page__top__item div.val {
        font-size: 20px
    }
}

.knh-page__top__item div.val span {
    margin: 0 2px;
    direction: ltr
}

.knh-page__top__item div.val.profit {
    color: var(--body_text_accent)
}

.knh-page__top__item div.val.loss {
    color: var(--helper_red)
}

.knh-page__top__item div.change img {
    width: 20px
}

.knh-page__top__item div.change span {
    margin-top: 4px
}

@media (min-width: 992px) {
    .knh-page__top__item div.change {
        font-size: 14px
    }
}

@media (min-width: 834px) {
    .knh-page__top__item div.bottom {
        width: 100%;
        margin-top: 16px;
        display: flex;
        justify-content: space-between
    }
}

.knh-page__part1 {
    width: 100%;
    padding: 32px 16px 0
}

@media (min-width: 834px) {
    .knh-page__part1 {
        margin-top: 30px;
        background-color: var(--surface_primary);
        border-radius: 16px;
        padding: 16px
    }
}

@media (min-width: 992px) {
    .knh-page__part1 {
        margin-top: 40px;
        padding: 24px
    }
}

.knh-page__part1 div.title {
    color: var(--body_text_primary);
    width: 100%
}

@media (min-width: 834px) {
    .knh-page__part1 div.title {
        justify-content: flex-start
    }
}

@media (min-width: 992px) {
    .knh-page__part1 div.title {
        font-size: 20px
    }
}

.knh-page__part1 div.wrapper {
    background-color: var(--surface_primary);
    border-radius: 16px;
    margin-top: 12px;
    padding: 16px
}

@media (min-width: 834px) {
    .knh-page__part1 div.wrapper {
        padding: 0;
        margin: 0
    }
}

.knh-page__part1 div.wrapper .button1 {
    margin-top: 24px
}

@media (min-width: 834px) {
    .knh-page__part1 div.wrapper .button1 {
        margin: 0;
        width: calc((100% - 48px)/4)
    }
}

.knh-page__part1 div.wrapper .calender {
    margin-bottom: 8px
}

@media (min-width: 834px) {
    .knh-page__part1 div.wrapper .calender {
        margin: 0;
        width: calc((100% - 48px)/4 - 20px)
    }
}

.knh-page__part1 div.wrapper .dropdown1 {
    margin-bottom: 8px
}

.knh-page__part1 div.wrapper .dropdown1 div.title {
    font-size: 16px
}

@media (min-width: 992px) {
    .knh-page__part1 div.wrapper .dropdown1 div.title {
        font-size: 14px
    }
}

@media (min-width: 834px) {
    .knh-page__part1 div.wrapper .dropdown1 {
        margin: 0;
        width: calc((100% - 48px)/4 + 40px)
    }
}

.knh-page__part1 div.desc {
    width: 100%;
    color: var(--body_text_primary);
    text-align: right
}

@media (min-width: 834px) {
    .knh-page__part1 div.desc {
        margin-top: 16px;
        justify-content: flex-start
    }
}

@media (min-width: 992px) {
    .knh-page__part1 div.desc {
        font-size: 14px;
        margin-top: 24px
    }
}

.knh-page__part1 div.inputs {
    margin-top: 12px;
    width: 100%
}

@media (min-width: 834px) {
    .knh-page__part1 div.inputs {
        display: flex;
        justify-content: space-between;
        margin-top: 24px
    }

    .knh-page__part1 div.inputs.is-result {
        flex-direction: column;
        justify-content: flex-start;
        margin-top: 12px;
        align-items: flex-end
    }
}

@media (min-width: 992px) {
    .knh-page__part1 div.inputs {
        margin-top: 32px
    }
}

.knh-page__part1__result {
    width: 100%;
    background-color: var(--surface_secondary);
    border-radius: 16px;
    padding: 8px 32px 0;
    margin-top: 12px
}

@media (min-width: 834px) {
    .knh-page__part1__result {
        margin: 24px 0 12px;
        padding: 0;
        flex-direction: row
    }
}

@media (min-width: 992px) {
    .knh-page__part1__result {
        margin: 32px 0 16px
    }
}

.knh-page__part1__row {
    width: 100%;
    border-bottom: 1px solid var(--surface_tertiary);
    padding: 24px 0
}

@media (min-width: 834px) {
    .knh-page__part1__row {
        width: 33.3333333333%;
        border-left: 1px solid var(--surface_tertiary);
        border-bottom: 0px;
        padding: 16px
    }
}

@media (min-width: 992px) {
    .knh-page__part1__row {
        padding: 24px
    }
}

.knh-page__part1__row.last {
    border: unset
}

.knh-page__part1__item {
    min-width: 30%
}

.knh-page__part1__item div.key {
    color: var(--body_text_primary)
}

@media (min-width: 992px) {
    .knh-page__part1__item div.key {
        font-size: 14px
    }
}

.knh-page__part1__item div.val {
    margin-top: 8px;
    color: var(--body_text_accent)
}

@media (min-width: 992px) {
    .knh-page__part1__item div.val {
        font-size: 14px
    }
}

.knh-page__part1__item div.val.sell {
    color: var(--helper_red)
}

.knh-page__part1__item div.val span {
    padding: 0 2px
}

.knh-page__twin {
    width: 100%
}

@media (min-width: 834px) {
    .knh-page__twin {
        margin-top: 30px;
        display: flex;
        justify-content: space-between
    }
}

@media (min-width: 992px) {
    .knh-page__twin {
        margin-top: 40px
    }
}

.knh-page__part2 {
    width: 100%;
    padding: 0 16px;
    margin-top: 32px
}

@media (min-width: 834px) {
    .knh-page__part2 {
        padding: 16px;
        margin: 0;
        width: calc((100% - 32px)/2);
        background-color: var(--surface_primary);
        border-radius: 16px
    }
}

@media (min-width: 992px) {
    .knh-page__part2 {
        width: calc((100% - 32px)*.35);
        padding: 24px
    }
}

.knh-page__part2 div.wrapper {
    width: 100%;
    background-color: var(--surface_primary);
    border-radius: 16px;
    padding: 16px;
    margin-top: 12px
}

@media (min-width: 834px) {
    .knh-page__part2 div.wrapper {
        margin: 0;
        padding: 0;
        flex-direction: column;
        justify-content: center
    }
}

@media (min-width: 992px) {
    .knh-page__part2 div.wrapper {
        flex-direction: row;
        justify-content: space-between;
        margin-top: 24px;
        align-items: center
    }
}

.knh-page__part2 div.left {
    width: 40%
}

@media (min-width: 834px) {
    .knh-page__part2 div.left {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 40px
    }
}

@media (min-width: 992px) {
    .knh-page__part2 div.left {
        flex-direction: column;
        flex-wrap: unset;
        align-items: flex-start;
        margin-top: 0;
        width: calc(100% - 210px)
    }
}

.knh-page__part2 div.left div.item {
    color: var(--body_text_primary);
    margin-top: 8px
}

@media (min-width: 834px) {
    .knh-page__part2 div.left div.item {
        width: 50%
    }
}

@media (min-width: 992px) {
    .knh-page__part2 div.left div.item {
        width: unset
    }
}

.knh-page__part2 div.left div.title_fa {
    margin: 0 4px
}

.knh-page__part2 div.left div.circle {
    width: 8px;
    height: 8px;
    border-radius: 4px
}

.knh-page__part2 div.chart-part {
    width: 50%
}

@media (min-width: 834px) {
    .knh-page__part2 div.chart-part {
        width: 100%;
        margin-top: 45px;
        width: 150px;
        height: 150px;
        display: flex;
        flex-direction: column;
        align-items: center
    }
}

@media (min-width: 992px) {
    .knh-page__part2 div.chart-part {
        width: 170px;
        height: 170px;
        margin-top: 0
    }
}

.knh-page__part2 div.chart-part .element5 {
    width: 100% !important;
    height: 100% !important;
    border: unset
}

.knh-page__part2 div.chart-part .element5 div {
    width: 40% !important;
    height: unset !important
}

.knh-page__part2 div.title {
    color: var(--body_text_primary);
    width: 100%
}

@media (min-width: 834px) {
    .knh-page__part2 div.title {
        justify-content: flex-start
    }
}

.knh-page__part2 div.empty {
    width: 100%;
    height: 100%;
    height: 230px
}

@media (min-width: 834px) {
    .knh-page__part2 div.empty {
        height: 200px
    }
}

.knh-page__part2 div.empty div.empty-text {
    margin-bottom: 40px;
    color: var(--text_on_disable_primary)
}

.knh-page__part3 {
    width: 100%;
    margin-top: 32px;
    padding: 0 16px
}

@media (min-width: 834px) {
    .knh-page__part3 {
        padding: 0;
        margin: 0;
        width: calc((100% - 32px)/2);
        background-color: var(--surface_primary);
        border-radius: 16px
    }
}

@media (min-width: 992px) {
    .knh-page__part3 {
        width: calc((100% - 32px)*.65)
    }
}

.knh-page__part3 div.wrapper {
    padding: 16px;
    background-color: var(--surface_primary);
    border-radius: 16px
}

@media (min-width: 992px) {
    .knh-page__part3 div.wrapper {
        padding: 24px
    }
}

.knh-page__part3 div.middle {
    width: 100%;
    padding-top: 16px;
    margin-top: 16px;
    border-top: 1px solid var(--border_line_tertiary)
}

.knh-page__part3 div.row {
    width: 100%
}

.knh-page__part3 div.row.second {
    margin-top: 12px
}

@media (min-width: 992px) {
    .knh-page__part3 div.row span {
        font-size: 14px
    }
}

.knh-page__part3 div.row span.key {
    color: var(--body_text_secondary)
}

.knh-page__part3 div.row span.val {
    color: var(--body_text_primary)
}

.knh-page__part3 div.next-level {
    width: 100%;
    color: var(--body_text_primary)
}

@media (min-width: 992px) {
    .knh-page__part3 div.next-level {
        font-size: 12px
    }
}

.knh-page__part3 div.percent {
    width: 100%;
    margin-top: 16px
}

.knh-page__part3 div.percent div.start-end {
    width: 100%;
    color: var(--body_text_primary);
    margin-top: 4px
}

@media (min-width: 992px) {
    .knh-page__part3 div.percent div.start-end {
        font-size: 12px
    }
}

.knh-page__part3 div.percent div.line {
    width: 100%;
    background-color: var(--border_line_tertiary);
    border-radius: 16px;
    height: 8px
}

.knh-page__part3 div.percent div.line div {
    position: absolute;
    left: 0;
    height: 8px;
    border-radius: 8px;
    background-color: var(--progress)
}

.knh-page__part3 div.btn {
    margin-top: 16px;
    color: var(--body_text_accent);
    cursor: pointer
}

@media (min-width: 992px) {
    .knh-page__part3 div.btn {
        display: flex;
        justify-content: flex-end
    }
}

.knh-page__part4 {
    width: 100%;
    padding: 0 16px;
    margin-top: 32px
}

@media (min-width: 834px) {
    .knh-page__part4 {
        background-color: var(--surface_primary);
        border-radius: 16px;
        padding: 24px
    }
}

@media (min-width: 992px) {
    .knh-page__part4 {
        width: 60vw;
        margin: 40px 10% 0;
        padding: 24px 40px
    }
}

.knh-page__part4 div.wrapper {
    width: 100%
}

.knh-page__part4 div.title {
    color: var(--body_text_primary);
    width: 100%
}

@media (min-width: 834px) {
    .knh-page__part4 div.title {
        justify-content: flex-start
    }
}

@media (min-width: 992px) {
    .knh-page__part4 div.title {
        font-size: 20px
    }
}

.knh-page__part4 div.desc {
    text-align: right;
    margin-top: 12px;
    color: var(--body_text_primary);
    width: 100%
}

.knh-page__part4 div.chart-part {
    margin-top: 12px;
    border-radius: 16px;
    background-color: var(--surface_primary);
    padding: 16px 16px 16px 12px
}

@media (min-width: 834px) {
    .knh-page__part4 div.chart-part {
        margin-top: 24px;
        padding: 0
    }
}

.knh-page__part4 div.chart-part .element5 {
    width: 100% !important;
    height: 100% !important;
    border: unset
}

.knh-page__part4 div.chart-part .element5 div {
    width: 20% !important;
    height: unset !important
}

.knh-asset-chart {
    background-color: var(--background_color);
    border-radius: 16px;
    padding: 20px 16px
}

@media (min-width: 992px) {
    .knh-asset-chart {
        padding: 24px
    }
}

.knh-asset-chart .element5 {
    width: 100% !important;
    height: 100% !important;
    border: unset
}

.knh-asset-chart .element5 div {
    width: 10% !important;
    height: unset !important
}

.knh-asset-chart div.chart-loading {
    width: 390px !important;
    height: 220px !important
}

@media (min-width: 992px) {
    .knh-asset-chart div.chart-loading {
        height: 230px !important
    }
}

.knh-asset-chart div.title {
    color: var(--body_text_primary);
    width: 100%;
    margin-bottom: 12px
}

@media (min-width: 992px) {
    .knh-asset-chart div.title {
        font-size: 14px
    }
}

.loan {
    width: 100vw
}

.loan__body {
    padding: 32px 16px 120px
}

@media (min-width: 834px) {
    .loan__body {
        padding: 64px 8%;
        flex-direction: row-reverse;
        justify-content: space-between
    }
}

@media (min-width: 992px) {
    .loan__body {
        padding: 84px 11% 100px 10%
    }
}

@media (min-width: 834px) {
    .loan__body__data {
        width: 50%
    }
}

@media (min-width: 992px) {
    .loan__body__data {
        width: 40%
    }
}

.loan__body__data p.text {
    width: 100%;
    color: #fff;
    margin-top: 32px
}

@media (min-width: 992px) {
    .loan__body__data p.text {
        font-size: 14px;
        margin: 0
    }
}

.loan__body__data div.options {
    width: 100%;
    margin-top: 40px
}

.loan__body__data div.options div {
    height: 56px;
    background-color: #222;
    width: 100%;
    margin-bottom: 16px;
    color: #fff;
    border-radius: 16px;
    cursor: pointer
}

@media (min-width: 992px) {
    .loan__body__data div.options div {
        margin-bottom: 32px;
        font-size: 14px;
        height: 64px
    }
}

.loan__body__image {
    width: 100%
}

@media (min-width: 834px) {
    .loan__body__image {
        width: 45%
    }
}

@media (min-width: 992px) {
    .loan__body__image {
        width: 45%
    }
}

.loan__body__image img {
    max-width: 80%
}

@media (min-width: 834px) {
    .loan__body__image img {
        max-width: 100%
    }
}

.loan-light {
    width: 100vw;
    background-color: #e9e9e9
}

.loan-light__body {
    padding: 32px 16px 120px
}

@media (min-width: 834px) {
    .loan-light__body {
        padding: 64px 8%;
        flex-direction: row-reverse;
        justify-content: space-between
    }
}

@media (min-width: 992px) {
    .loan-light__body {
        padding: 84px 11% 100px 10%
    }
}

@media (min-width: 834px) {
    .loan-light__body__data {
        width: 50%
    }
}

@media (min-width: 992px) {
    .loan-light__body__data {
        width: 40%
    }
}

.loan-light__body__data p.text {
    width: 100%;
    color: #fff;
    margin-top: 32px
}

@media (min-width: 992px) {
    .loan-light__body__data p.text {
        font-size: 14px;
        margin: 0
    }
}

.loan-light__body__data div.options {
    width: 100%;
    margin-top: 40px
}

.loan-light__body__data div.options div {
    height: 56px;
    background-color: #222;
    width: 100%;
    margin-bottom: 16px;
    color: #fff;
    border-radius: 16px;
    cursor: pointer
}

@media (min-width: 992px) {
    .loan-light__body__data div.options div {
        margin-bottom: 32px;
        font-size: 14px;
        height: 64px
    }
}

.loan-light__body__image {
    width: 100%
}

@media (min-width: 834px) {
    .loan-light__body__image {
        width: 45%
    }
}

@media (min-width: 992px) {
    .loan-light__body__image {
        width: 45%
    }
}

.loan-light__body__image img {
    max-width: 80%
}

@media (min-width: 834px) {
    .loan-light__body__image img {
        max-width: 100%
    }
}

.loan-footer {
    width: 100%;
    color: #d8d8d8;
    padding-bottom: 24px
}

.loan-footer span {
    margin-left: 8px
}

.loan-footer button {
    background-color: unset;
    border: unset;
    outline: unset;
    width: 24px;
    height: 24px
}

.loan-footer img {
    cursor: pointer;
    width: 24px
}

.loan-footer-light {
    width: 100%;
    color: #1a1a1a;
    padding-bottom: 24px
}

.loan-footer-light span {
    margin-left: 8px
}

.loan-footer-light button {
    background-color: unset;
    border: unset;
    outline: unset;
    width: 24px;
    height: 24px
}

.loan-footer-light img {
    cursor: pointer;
    width: 24px
}

.loan-header {
    width: 120%;
    height: 66px;
    align-self: center
}

@media (min-width: 834px) {
    .loan-header {
        width: 140%
    }
}

.loan-header img {
    margin-left: 2px;
    margin-right: 2px
}

@media (min-width: 834px) {
    .loan-header img {
        width: 32px;
        margin-left: 8px;
        margin-right: 8px
    }
}

@media (min-width: 992px) {
    .loan-header {
        height: 72px;
        font-size: 14px
    }
}

.loan-header div.box {
    width: 100%
}

.loan-header div.item {
    width: 33.3%;
    color: #666
}

.loan-header div.item.current {
    color: #b2b2b2
}

.loan-header div.item.filled {
    color: #4ef09d
}

.loan-header div p {
    margin-top: 10px
}

.loan-header div.line {
    width: calc(50% - 15px);
    height: 1px;
    border-bottom: 1px dashed #666
}

@media (min-width: 834px) {
    .loan-header div.line {
        width: calc(50% - 25px)
    }
}

.loan-header div.line.current {
    border-bottom: 1px dashed #b2b2b2
}

.loan-header div.line.filled {
    border-bottom: 1px dashed #4ef09d
}

.loan-header div.line.hide {
    opacity: 0
}

.loan-header-light {
    width: 120%;
    height: 66px;
    align-self: center
}

@media (min-width: 834px) {
    .loan-header-light {
        width: 140%
    }
}

.loan-header-light img {
    margin-left: 2px;
    margin-right: 2px
}

@media (min-width: 834px) {
    .loan-header-light img {
        width: 32px;
        margin-left: 8px;
        margin-right: 8px
    }
}

@media (min-width: 992px) {
    .loan-header-light {
        height: 72px;
        font-size: 14px
    }
}

.loan-header-light div.box {
    width: 100%
}

.loan-header-light div.item {
    width: 33.3%;
    color: #b2b2b2
}

.loan-header-light div.item.current {
    color: #666
}

.loan-header-light div.item.filled {
    color: #02a67f
}

.loan-header-light div p {
    margin-top: 10px
}

.loan-header-light div.line {
    width: calc(50% - 15px);
    height: 1px;
    border-bottom: 1px dashed #b2b2b2
}

@media (min-width: 834px) {
    .loan-header-light div.line {
        width: calc(50% - 25px)
    }
}

.loan-header-light div.line.current {
    border-bottom: 1px dashed #666
}

.loan-header-light div.line.filled {
    border-bottom: 1px dashed #02a67f
}

.loan-header-light div.line.hide {
    opacity: 0
}

.loan-tab {
    width: 160px;
    background-color: #222;
    position: fixed;
    top: 84px;
    right: 0;
    z-index: 30;
    height: 100vh
}

.loan-tab__title {
    color: #fff;
    margin-top: 48px;
    cursor: pointer
}

.loan-tab__item {
    margin-top: 56px;
    color: #fff;
    cursor: pointer
}

.loan-tab__item span {
    margin-top: 10px
}

.loan-tab__item.selected {
    color: #4ef09d
}

.loan-tab-light {
    width: 160px;
    background-color: #d8d8d8;
    position: fixed;
    top: 84px;
    right: 0;
    z-index: 30;
    height: 100vh
}

.loan-tab-light__title {
    color: #1a1a1a;
    margin-top: 48px;
    cursor: pointer
}

.loan-tab-light__item {
    margin-top: 56px;
    color: #1a1a1a;
    cursor: pointer
}

.loan-tab-light__item span {
    margin-top: 10px
}

.loan-tab-light__item.selected {
    color: #02a67f
}

.loan-wrapper {
    padding: 24px 16px 120px
}

@media (min-width: 834px) {
    .loan-wrapper {
        padding: 48px calc(8% + 160px) 64px 8%
    }
}

@media (min-width: 992px) {
    .loan-wrapper {
        padding: 56px calc(11% + 160px) 100px 10%
    }
}

.loan-wrapper-light {
    padding: 24px 16px 120px
}

@media (min-width: 834px) {
    .loan-wrapper-light {
        padding: 48px calc(8% + 160px) 64px 8%
    }
}

@media (min-width: 992px) {
    .loan-wrapper-light {
        padding: 56px calc(11% + 160px) 100px 10%
    }
}

.installment-popup {
    width: 100vw;
    height: 100vh;
    background-color: #3a3a3ad1;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 16px
}

@media (min-width: 834px) {
    .installment-popup {
        padding: 0 30%
    }
}

@media (min-width: 992px) {
    .installment-popup {
        padding: 0 36%
    }
}

.installment-popup__body {
    width: 100%;
    background-color: #1a1a1a;
    border-radius: 16px;
    padding: 16px 16px 24px
}

.installment-popup .element3 {
    margin-top: 20px
}

.installment-popup div.close {
    width: 100%
}

.installment-popup div.close img {
    cursor: pointer
}

.installment-popup div.title {
    color: #fff
}

.installment-popup__list {
    width: 100%;
    margin-top: 12px
}

.installment-popup__list__head {
    width: 100%;
    background-color: #222;
    height: 48px;
    border-radius: 8px 8px 0 0;
    color: #d8d8d8
}

.installment-popup__list__head span {
    width: 25%
}

.installment-popup__list__list {
    width: 100%
}

.installment-popup__list__list div.item {
    width: 100%;
    height: 48px;
    border-bottom: 1px solid #333;
    color: #fff
}

.installment-popup__list__list div.item.last {
    border-bottom: 0px
}

.installment-popup__list__list div.item div.tick-button {
    width: 25%;
    justify-content: center;
    padding-right: 4px
}

.installment-popup__list__list div.item span {
    width: 25%
}

.installment-popup-light {
    width: 100vw;
    height: 100vh;
    background-color: #1a1a1ab2;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 16px
}

@media (min-width: 834px) {
    .installment-popup-light {
        padding: 0 30%
    }
}

@media (min-width: 992px) {
    .installment-popup-light {
        padding: 0 36%
    }
}

.installment-popup-light__body {
    width: 100%;
    background-color: #f2f2f2;
    border-radius: 16px;
    padding: 16px 16px 24px
}

.installment-popup-light .element3-light {
    margin-top: 20px
}

.installment-popup-light div.close {
    width: 100%
}

.installment-popup-light div.close img {
    cursor: pointer
}

.installment-popup-light div.title {
    color: #1a1a1a
}

.installment-popup-light__list {
    width: 100%;
    margin-top: 12px
}

.installment-popup-light__list__head {
    width: 100%;
    background-color: #d8d8d8;
    height: 48px;
    border-radius: 8px 8px 0 0;
    color: #1a1a1a
}

.installment-popup-light__list__head span {
    width: 25%
}

.installment-popup-light__list__list {
    width: 100%
}

.installment-popup-light__list__list div.item {
    width: 100%;
    height: 48px;
    border-bottom: 1px solid #d8d8d8;
    color: #1a1a1a
}

.installment-popup-light__list__list div.item.last {
    border-bottom: 0px
}

.installment-popup-light__list__list div.item div.tick-button {
    width: 25%;
    justify-content: center;
    padding-right: 4px
}

.installment-popup-light__list__list div.item span {
    width: 25%
}

.loan-verify-popup {
    width: 100vw;
    height: 100vh;
    background-color: #3a3a3ad1;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 16px
}

@media (min-width: 834px) {
    .loan-verify-popup {
        padding: 0 30%
    }
}

@media (min-width: 992px) {
    .loan-verify-popup {
        padding: 0 38%
    }
}

.loan-verify-popup__body {
    width: 100%;
    background-color: #1a1a1a;
    border-radius: 16px;
    padding: 16px 16px 24px
}

.loan-verify-popup div.close {
    width: 100%
}

.loan-verify-popup div.close img {
    cursor: pointer
}

.loan-verify-popup div.title {
    color: #fff
}

.loan-verify-popup div.subtitle {
    color: #fff;
    margin-top: 24px
}

.loan-verify-popup__desc {
    width: 100%;
    background-color: #222;
    border-radius: 8px;
    margin-top: 20px;
    height: 270px;
    overflow-y: scroll;
    margin-bottom: 16px;
    padding: 16px;
    color: #fff
}

.loan-verify-popup__rows {
    width: 100%;
    margin-bottom: 32px
}

.loan-verify-popup__row1 {
    width: 100%;
    margin-top: 16px
}

.loan-verify-popup__row1.border {
    border-bottom: 1px solid #222;
    padding-bottom: 16px
}

.loan-verify-popup__row1 div.key {
    color: #b2b2b2
}

.loan-verify-popup__row1 div.val {
    color: #fff
}

.loan-verify-popup__hint {
    width: 100%;
    color: #fff;
    margin-top: 16px
}

.loan-verify-popup__hint img {
    margin-left: 8px
}

.loan-verify-popup__buttons {
    margin-top: 16px;
    width: 100%
}

.loan-verify-popup__buttons .button1,
.loan-verify-popup__buttons .button2 {
    width: calc((100% - 16px)/2)
}

.increase-loan-balance {
    width: 100vw;
    height: 100vh;
    background-color: #3a3a3ad1;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 16px
}

@media (min-width: 834px) {
    .increase-loan-balance {
        padding: 0 30%
    }
}

@media (min-width: 992px) {
    .increase-loan-balance {
        padding: 0 38%
    }
}

.increase-loan-balance__body {
    width: 100%;
    background-color: #1a1a1a;
    border-radius: 16px;
    padding: 16px 16px 24px
}

.increase-loan-balance .element3 {
    margin-top: 8px
}

.increase-loan-balance .tick-button {
    height: 54px;
    width: 100%;
    border-radius: 8px;
    background-color: #222;
    padding-right: 16px;
    margin-top: 16px
}

.increase-loan-balance div.close {
    width: 100%
}

.increase-loan-balance div.close img {
    cursor: pointer
}

.increase-loan-balance div.title {
    color: #fff
}

.increase-loan-balance-light {
    width: 100vw;
    height: 100vh;
    background-color: #1a1a1ab2;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 16px
}

@media (min-width: 834px) {
    .increase-loan-balance-light {
        padding: 0 30%
    }
}

@media (min-width: 992px) {
    .increase-loan-balance-light {
        padding: 0 38%
    }
}

.increase-loan-balance-light__body {
    width: 100%;
    background-color: #f2f2f2;
    border-radius: 16px;
    padding: 16px 16px 24px
}

.increase-loan-balance-light .element3-light {
    margin-top: 8px
}

.increase-loan-balance-light .tick-button {
    height: 54px;
    width: 100%;
    border-radius: 8px;
    background-color: #e1e1e1;
    padding-right: 16px;
    margin-top: 16px
}

.increase-loan-balance-light div.close {
    width: 100%
}

.increase-loan-balance-light div.close img {
    cursor: pointer
}

.increase-loan-balance-light div.title {
    color: #1a1a1a
}

.increase-collateral {
    width: 100vw;
    height: 100vh;
    background-color: #3a3a3ad1;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 16px
}

@media (min-width: 834px) {
    .increase-collateral {
        padding: 0 30%
    }
}

@media (min-width: 992px) {
    .increase-collateral {
        padding: 0 38%
    }
}

.increase-collateral__body {
    width: 100%;
    background-color: #1a1a1a;
    border-radius: 16px;
    padding: 16px 16px 24px
}

.increase-collateral__error {
    color: #ff5a5a;
    margin-top: 8px
}

.increase-collateral__out {
    width: 100%;
    background-color: #222;
    border-radius: 8px;
    padding: 16px
}

.increase-collateral__out div.balance-row {
    width: 100%;
    margin-bottom: 16px
}

.increase-collateral__out div.balance-row span.key {
    color: #b2b2b2
}

.increase-collateral__out div.balance-row div.val {
    color: #fff
}

.increase-collateral__out div.balance-row div.val img {
    margin-right: 8px;
    max-width: 24px
}

.increase-collateral__out div.enough-row {
    width: 100%;
    color: #fff
}

.increase-collateral__out div.enough-row img {
    margin-left: 8px
}

.increase-collateral__out div.increase-row {
    width: 100%;
    color: #4ef09d;
    cursor: pointer
}

.increase-collateral__out div.increase-row img {
    margin-right: 8px
}

.increase-collateral__suggestion {
    overflow-x: scroll;
    width: 100%
}

.increase-collateral__suggestion div.wrapper1 {
    display: flex;
    flex-direction: row;
    overflow-y: hidden;
    overflow-x: auto
}

.increase-collateral__suggestion div.wrapper2 {
    direction: rtl
}

.increase-collateral__suggestion div.item {
    background-color: #333;
    border-radius: 8px;
    min-width: 88px;
    height: 32px;
    color: #fff;
    margin-left: 16px;
    cursor: pointer
}

.increase-collateral__suggestion div.item span.code {
    margin-left: 8px
}

.increase-collateral div.close {
    width: 100%
}

.increase-collateral div.close img {
    cursor: pointer
}

.increase-collateral div.title {
    color: #fff
}

.increase-collateral div.subtitle {
    color: #fff;
    margin-bottom: 8px;
    margin-top: 24px
}

.increase-collateral-light {
    width: 100vw;
    height: 100vh;
    background-color: #1a1a1ab2;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 16px
}

@media (min-width: 834px) {
    .increase-collateral-light {
        padding: 0 30%
    }
}

@media (min-width: 992px) {
    .increase-collateral-light {
        padding: 0 38%
    }
}

.increase-collateral-light__body {
    width: 100%;
    background-color: #f2f2f2;
    border-radius: 16px;
    padding: 16px 16px 24px
}

.increase-collateral-light__error {
    color: #ff5a5a;
    margin-top: 8px
}

.increase-collateral-light__out {
    width: 100%;
    background-color: #fff;
    border-radius: 8px;
    padding: 16px
}

.increase-collateral-light__out div.balance-row {
    width: 100%;
    margin-bottom: 16px
}

.increase-collateral-light__out div.balance-row span.key {
    color: #666
}

.increase-collateral-light__out div.balance-row div.val {
    color: #1a1a1a
}

.increase-collateral-light__out div.balance-row div.val img {
    margin-right: 8px;
    max-width: 24px
}

.increase-collateral-light__out div.enough-row {
    width: 100%;
    color: #1a1a1a
}

.increase-collateral-light__out div.enough-row img {
    margin-left: 8px
}

.increase-collateral-light__out div.increase-row {
    width: 100%;
    color: #02a67f;
    cursor: pointer
}

.increase-collateral-light__out div.increase-row img {
    margin-right: 8px
}

.increase-collateral-light__suggestion {
    overflow-x: scroll;
    width: 100%
}

.increase-collateral-light__suggestion div.wrapper1 {
    display: flex;
    flex-direction: row;
    overflow-y: hidden;
    overflow-x: auto
}

.increase-collateral-light__suggestion div.wrapper2 {
    direction: rtl
}

.increase-collateral-light__suggestion div.item {
    background-color: #fff;
    border-radius: 8px;
    min-width: 88px;
    height: 32px;
    color: #1a1a1a;
    margin-left: 16px;
    cursor: pointer
}

.increase-collateral-light__suggestion div.item span.code {
    margin-left: 8px
}

.increase-collateral-light div.close {
    width: 100%
}

.increase-collateral-light div.close img {
    cursor: pointer
}

.increase-collateral-light div.title {
    color: #1a1a1a
}

.increase-collateral-light div.subtitle {
    color: #1a1a1a;
    margin-bottom: 8px;
    margin-top: 24px
}

.loan-insuff-popup {
    width: 100vw;
    height: 100vh;
    background-color: #3a3a3ad1;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 16px
}

@media (min-width: 834px) {
    .loan-insuff-popup {
        padding: 0 30%
    }
}

@media (min-width: 992px) {
    .loan-insuff-popup {
        padding: 0 38%
    }
}

.loan-insuff-popup__body {
    width: 100%;
    background-color: #1a1a1a;
    border-radius: 16px;
    padding: 16px 16px 24px
}

.loan-insuff-popup__title {
    color: #ff5a5a
}

.loan-insuff-popup__subtitle {
    color: #fff;
    margin-top: 24px;
    margin-bottom: 8px
}

.loan-insuff-popup div.close {
    width: 100%
}

.loan-insuff-popup div.close img {
    cursor: pointer
}

.loan-insuff-popup-light {
    width: 100vw;
    height: 100vh;
    background-color: #1a1a1ab2;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 16px
}

@media (min-width: 834px) {
    .loan-insuff-popup-light {
        padding: 0 30%
    }
}

@media (min-width: 992px) {
    .loan-insuff-popup-light {
        padding: 0 38%
    }
}

.loan-insuff-popup-light__body {
    width: 100%;
    background-color: #f2f2f2;
    border-radius: 16px;
    padding: 16px 16px 24px
}

.loan-insuff-popup-light__title {
    color: #ff5a5a
}

.loan-insuff-popup-light__subtitle {
    color: #1a1a1a;
    margin-top: 24px;
    margin-bottom: 8px
}

.loan-insuff-popup-light div.close {
    width: 100%
}

.loan-insuff-popup-light div.close img {
    cursor: pointer
}

.loan-landing {
    width: 100vw
}

.loan-landing .element7 {
    padding: 0
}

.loan-landing .element7__body {
    background-color: unset;
    padding-right: 0;
    padding-left: 0
}

.loan-landing__body {
    padding: 32px 16px 120px
}

@media (min-width: 834px) {
    .loan-landing__body {
        padding: 0 8%
    }
}

@media (min-width: 992px) {
    .loan-landing__body {
        padding: 0 11% 100px 10%
    }
}

.loan-landing__top {
    width: 100%;
    margin-top: 32px
}

@media (min-width: 834px) {
    .loan-landing__top {
        margin-top: 100px;
        flex-direction: row;
        justify-content: space-between
    }
}

.loan-landing__top__right {
    width: 100%
}

@media (min-width: 834px) {
    .loan-landing__top__right {
        width: 60%
    }
}

.loan-landing__top__left {
    width: 100%
}

@media (min-width: 834px) {
    .loan-landing__top__left {
        width: 38%
    }
}

.loan-landing__buttons {
    width: 100%;
    margin-top: 32px
}

.loan-landing__buttons div.options {
    width: 100%
}

.loan-landing__buttons div.options div {
    margin-top: 16px;
    background-color: #222;
    border-radius: 8px;
    height: 48px;
    width: calc((100% - 16px)/2);
    color: #fff;
    cursor: pointer
}

@media (min-width: 834px) {
    .loan-landing__buttons {
        width: 250px;
        margin-top: 48px
    }
}

@media (min-width: 992px) {
    .loan-landing__buttons {
        width: 360px
    }
}

.loan-landing__title {
    width: 100%;
    color: #fff
}

@media (min-width: 834px) {
    .loan-landing__title {
        font-size: 24px;
        justify-content: flex-start
    }
}

@media (min-width: 992px) {
    .loan-landing__title {
        font-size: 40px
    }
}

.loan-landing__subtitle {
    width: 100%;
    margin-top: 10px;
    color: #fff
}

@media (min-width: 834px) {
    .loan-landing__subtitle {
        font-size: 14px;
        margin-top: 24px;
        justify-content: flex-start
    }
}

@media (min-width: 992px) {
    .loan-landing__subtitle {
        font-size: 20px
    }
}

.loan-landing__image {
    width: 100%;
    margin-top: 48px
}

@media (min-width: 834px) {
    .loan-landing__image {
        margin-top: 0
    }
}

.loan-landing__image img {
    max-width: 65%
}

@media (min-width: 834px) {
    .loan-landing__image img {
        max-width: 100%
    }
}

.loan-landing__cat-head {
    width: 100%;
    margin-top: 80px;
    color: #fff
}

@media (min-width: 834px) {
    .loan-landing__cat-head {
        justify-content: flex-start;
        font-size: 20px;
        margin-top: 80px
    }
}

@media (min-width: 992px) {
    .loan-landing__cat-head {
        font-size: 24px;
        margin-top: 120px
    }
}

.loan-landing__skeleton-wrapper {
    width: 100%;
    margin-top: 40px
}

.loan-landing__calc {
    width: 100%;
    background-color: #222;
    border-radius: 16px;
    padding: 32px 16px;
    margin-top: 40px
}

.loan-landing__calc__title {
    width: 100%;
    color: #fff
}

@media (min-width: 834px) {
    .loan-landing__calc__title {
        font-size: 14px
    }
}

.loan-landing__calc__drops {
    width: 100%;
    margin-top: 24px
}

@media (min-width: 834px) {
    .loan-landing__calc__drops {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between
    }
}

@media (min-width: 834px) {
    .loan-landing__calc__drops div.item {
        width: calc((100% - 30px)/2)
    }
}

.loan-landing__calc__drops div.input-title {
    color: #fff;
    width: 100%;
    text-align: right;
    margin-bottom: 12px
}

@media (min-width: 834px) {
    .loan-landing__calc__drops div.input-title {
        font-size: 14px
    }
}

.loan-landing__calc__output {
    margin-top: 24px;
    width: 100%;
    border-radius: 8px;
    background-color: #33333380;
    padding: 16px 16px 0
}

@media (min-width: 834px) {
    .loan-landing__calc__output {
        flex-direction: row;
        padding: 16px;
        margin-top: 16px
    }
}

.loan-landing__calc__output div.row {
    width: 100%;
    margin-bottom: 16px
}

@media (min-width: 834px) {
    .loan-landing__calc__output div.row {
        flex-direction: column;
        height: 100%;
        border-left: 1px dashed #333;
        margin-bottom: 0
    }
}

.loan-landing__calc__output div.val {
    color: #fff
}

@media (min-width: 834px) {
    .loan-landing__calc__output div.val {
        margin-top: 16px
    }
}

@media (min-width: 992px) {
    .loan-landing__calc__output div.val {
        font-size: 16px
    }
}

.loan-landing__calc__output span.key {
    color: #b2b2b2
}

@media (min-width: 992px) {
    .loan-landing__calc__output span.key {
        font-size: 16px
    }
}

.loan-landing__calc__buttons {
    width: 100%;
    margin-top: 64px;
    flex-direction: column
}

@media (min-width: 834px) {
    .loan-landing__calc__buttons {
        margin-top: 20px;
        flex-direction: row
    }

    .loan-landing__calc__buttons .button1 {
        width: 190px;
        margin-top: 0
    }
}

.loan-landing__calc__buttons div.vency {
    color: #fff
}

.loan-landing__calc__buttons div.vency button {
    background-color: unset;
    border: unset;
    outline: unset;
    width: 24px;
    height: 24px;
    margin-left: 8px
}

.loan-landing__calc__buttons div.vency img {
    cursor: pointer;
    width: 24px
}

.loan-landing__list1 {
    width: 100%;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 32px
}

@media (min-width: 834px) {
    .loan-landing__list1 {
        margin-top: 48px
    }
}

.loan-landing__list1 div.item {
    width: calc((100% - 16px)/2);
    padding-top: 12px;
    margin-bottom: 24px
}

@media (min-width: 834px) {
    .loan-landing__list1 div.item {
        width: 25%;
        padding: 12px;
        margin-bottom: 0;
        border-radius: 16px
    }
}

@media (min-width: 992px) {
    .loan-landing__list1 div.item {
        padding: 24px
    }
}

.loan-landing__list1 div.item img {
    width: 48px
}

@media (min-width: 834px) {
    .loan-landing__list1 div.item img {
        width: 56px
    }
}

.loan-landing__list1 div.item h2.title {
    color: #fff;
    margin-top: 20px
}

@media (min-width: 834px) {
    .loan-landing__list1 div.item h2.title {
        margin-top: 24px
    }
}

@media (min-width: 992px) {
    .loan-landing__list1 div.item h2.title {
        font-size: 16px
    }
}

.loan-landing__list1 div.item span.subtitle {
    color: #d8d8d8;
    margin-top: 12px;
    text-align: center
}

@media (min-width: 834px) {
    .loan-landing__list1 div.item span.subtitle {
        margin-top: 16px
    }
}

@media (min-width: 992px) {
    .loan-landing__list1 div.item span.subtitle {
        font-size: 14px
    }
}

.loan-landing__list2 {
    width: 100%;
    margin-top: 40px
}

@media (min-width: 834px) {
    .loan-landing__list2 {
        margin-top: 73px;
        flex-direction: row;
        align-items: flex-start
    }
}

.loan-landing__list2 div.item {
    width: 100%;
    align-items: flex-start
}

@media (min-width: 834px) {
    .loan-landing__list2 div.item {
        width: 25%;
        padding: 24px 0;
        margin-bottom: 0;
        flex-direction: column
    }
}

.loan-landing__list2 div.item span.title {
    color: #fff;
    text-align: right;
    width: 100%
}

@media (min-width: 834px) {
    .loan-landing__list2 div.item span.title {
        margin-top: 32px;
        text-align: center
    }
}

@media (min-width: 992px) {
    .loan-landing__list2 div.item span.title {
        font-size: 16px
    }
}

.loan-landing__list2 div.item span.subtitle {
    width: 100%;
    color: #d8d8d8;
    margin-top: 8px;
    text-align: right;
    margin-bottom: 40px
}

@media (min-width: 834px) {
    .loan-landing__list2 div.item span.subtitle {
        margin-top: 16px;
        text-align: center;
        margin-bottom: 0;
        padding: 0 12px
    }
}

@media (min-width: 992px) {
    .loan-landing__list2 div.item span.subtitle {
        font-size: 14px
    }
}

.loan-landing__list2 div.number {
    width: 24px
}

@media (min-width: 834px) {
    .loan-landing__list2 div.number {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        width: 100%
    }
}

.loan-landing__list2 div.number span {
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 12px;
    background-color: #015945;
    line-height: 10px
}

.loan-landing__list2 div.number div {
    width: 1px;
    height: 75px;
    border-left: 1px dashed #cafbe2;
    margin-top: 10px
}

@media (min-width: 834px) {
    .loan-landing__list2 div.number div {
        margin-top: 0;
        height: 1px;
        width: calc((100% - 44px)/2);
        border-bottom: 1px dashed #cafbe2;
        margin-right: 10px
    }

    .loan-landing__list2 div.number div.right {
        margin-right: 0;
        margin-left: 10px
    }

    .loan-landing__list2 div.number div.right.index-0,
    .loan-landing__list2 div.number div.left.index-3 {
        border-width: 0px
    }
}

.loan-landing__list2 div.body {
    width: calc(100% - 24px);
    padding-right: 16px
}

@media (min-width: 834px) {
    .loan-landing__list2 div.body {
        width: 100%;
        padding: 0
    }
}

.loan-landing-light {
    width: 100vw;
    background-color: #e9e9e9
}

.loan-landing-light .element7 {
    padding: 0
}

.loan-landing-light .element7__body {
    background-color: unset;
    padding-right: 0;
    padding-left: 0
}

.loan-landing-light__body {
    padding: 32px 16px 120px
}

@media (min-width: 834px) {
    .loan-landing-light__body {
        padding: 0 8%
    }
}

@media (min-width: 992px) {
    .loan-landing-light__body {
        padding: 0 11% 100px 10%
    }
}

.loan-landing-light__top {
    width: 100%;
    margin-top: 32px
}

@media (min-width: 834px) {
    .loan-landing-light__top {
        margin-top: 100px;
        flex-direction: row;
        justify-content: space-between
    }
}

.loan-landing-light__top__right {
    width: 100%
}

@media (min-width: 834px) {
    .loan-landing-light__top__right {
        width: 60%
    }
}

.loan-landing-light__top__left {
    width: 100%
}

@media (min-width: 834px) {
    .loan-landing-light__top__left {
        width: 38%
    }
}

.loan-landing-light__buttons {
    width: 100%;
    margin-top: 32px
}

.loan-landing-light__buttons div.options {
    width: 100%
}

.loan-landing-light__buttons div.options div {
    margin-top: 16px;
    background-color: #333;
    border-radius: 8px;
    height: 48px;
    width: calc((100% - 16px)/2);
    color: #fff;
    cursor: pointer
}

@media (min-width: 834px) {
    .loan-landing-light__buttons {
        width: 250px;
        margin-top: 48px
    }
}

@media (min-width: 992px) {
    .loan-landing-light__buttons {
        width: 360px
    }
}

.loan-landing-light__title {
    width: 100%;
    color: #1a1a1a
}

@media (min-width: 834px) {
    .loan-landing-light__title {
        font-size: 24px;
        justify-content: flex-start
    }
}

@media (min-width: 992px) {
    .loan-landing-light__title {
        font-size: 40px
    }
}

.loan-landing-light__subtitle {
    width: 100%;
    margin-top: 10px;
    color: #1a1a1a
}

@media (min-width: 834px) {
    .loan-landing-light__subtitle {
        font-size: 14px;
        margin-top: 24px;
        justify-content: flex-start
    }
}

@media (min-width: 992px) {
    .loan-landing-light__subtitle {
        font-size: 20px
    }
}

.loan-landing-light__image {
    width: 100%;
    margin-top: 48px
}

@media (min-width: 834px) {
    .loan-landing-light__image {
        margin-top: 0
    }
}

.loan-landing-light__image img {
    max-width: 65%
}

@media (min-width: 834px) {
    .loan-landing-light__image img {
        max-width: 100%
    }
}

.loan-landing-light__cat-head {
    width: 100%;
    margin-top: 80px;
    color: #1a1a1a
}

@media (min-width: 834px) {
    .loan-landing-light__cat-head {
        justify-content: flex-start;
        font-size: 20px;
        margin-top: 80px
    }
}

@media (min-width: 992px) {
    .loan-landing-light__cat-head {
        font-size: 24px;
        margin-top: 120px
    }
}

.loan-landing-light__skeleton-wrapper {
    width: 100%;
    margin-top: 40px
}

.loan-landing-light__calc {
    width: 100%;
    background-color: #f2f2f2;
    border-radius: 16px;
    padding: 32px 16px;
    margin-top: 40px
}

.loan-landing-light__calc__title {
    width: 100%;
    color: #1a1a1a
}

@media (min-width: 834px) {
    .loan-landing-light__calc__title {
        font-size: 14px
    }
}

.loan-landing-light__calc__drops {
    width: 100%;
    margin-top: 24px
}

@media (min-width: 834px) {
    .loan-landing-light__calc__drops {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between
    }
}

@media (min-width: 834px) {
    .loan-landing-light__calc__drops div.item {
        width: calc((100% - 30px)/2)
    }
}

.loan-landing-light__calc__drops div.input-title {
    color: #1a1a1a;
    width: 100%;
    text-align: right;
    margin-bottom: 12px
}

@media (min-width: 834px) {
    .loan-landing-light__calc__drops div.input-title {
        font-size: 14px
    }
}

.loan-landing-light__calc__output {
    margin-top: 24px;
    width: 100%;
    border-radius: 8px;
    background-color: #fff;
    padding: 16px 16px 0
}

@media (min-width: 834px) {
    .loan-landing-light__calc__output {
        flex-direction: row;
        padding: 16px;
        margin-top: 16px
    }
}

.loan-landing-light__calc__output div.row {
    width: 100%;
    margin-bottom: 16px
}

@media (min-width: 834px) {
    .loan-landing-light__calc__output div.row {
        flex-direction: column;
        height: 100%;
        border-left: 1px dashed #b2b2b2;
        margin-bottom: 0
    }
}

.loan-landing-light__calc__output div.val {
    color: #666
}

@media (min-width: 834px) {
    .loan-landing-light__calc__output div.val {
        margin-top: 16px
    }
}

@media (min-width: 992px) {
    .loan-landing-light__calc__output div.val {
        font-size: 16px
    }
}

.loan-landing-light__calc__output span.key {
    color: #1a1a1a
}

@media (min-width: 992px) {
    .loan-landing-light__calc__output span.key {
        font-size: 16px
    }
}

.loan-landing-light__calc__buttons {
    width: 100%;
    margin-top: 64px;
    flex-direction: column
}

@media (min-width: 834px) {
    .loan-landing-light__calc__buttons {
        margin-top: 20px;
        flex-direction: row
    }

    .loan-landing-light__calc__buttons .button1 {
        width: 190px;
        margin-top: 0
    }
}

.loan-landing-light__calc__buttons div.vency {
    color: #333
}

.loan-landing-light__calc__buttons div.vency button {
    background-color: unset;
    border: unset;
    outline: unset;
    width: 24px;
    height: 24px;
    margin-left: 8px
}

.loan-landing-light__calc__buttons div.vency img {
    cursor: pointer;
    width: 24px
}

.loan-landing-light__list1 {
    width: 100%;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 32px
}

@media (min-width: 834px) {
    .loan-landing-light__list1 {
        margin-top: 48px
    }
}

.loan-landing-light__list1 div.item {
    width: calc((100% - 16px)/2);
    padding-top: 12px;
    margin-bottom: 24px
}

@media (min-width: 834px) {
    .loan-landing-light__list1 div.item {
        width: 25%;
        padding: 12px;
        margin-bottom: 0;
        border-radius: 16px
    }
}

@media (min-width: 992px) {
    .loan-landing-light__list1 div.item {
        padding: 24px
    }
}

.loan-landing-light__list1 div.item img {
    width: 48px
}

@media (min-width: 834px) {
    .loan-landing-light__list1 div.item img {
        width: 56px
    }
}

.loan-landing-light__list1 div.item h2.title {
    color: #1a1a1a;
    margin-top: 20px
}

@media (min-width: 834px) {
    .loan-landing-light__list1 div.item h2.title {
        margin-top: 24px
    }
}

@media (min-width: 992px) {
    .loan-landing-light__list1 div.item h2.title {
        font-size: 16px
    }
}

.loan-landing-light__list1 div.item span.subtitle {
    color: #1a1a1a;
    margin-top: 12px;
    text-align: center
}

@media (min-width: 834px) {
    .loan-landing-light__list1 div.item span.subtitle {
        margin-top: 16px
    }
}

@media (min-width: 992px) {
    .loan-landing-light__list1 div.item span.subtitle {
        font-size: 14px
    }
}

.loan-landing-light__list2 {
    width: 100%;
    margin-top: 40px
}

@media (min-width: 834px) {
    .loan-landing-light__list2 {
        margin-top: 73px;
        flex-direction: row;
        align-items: flex-start
    }
}

.loan-landing-light__list2 div.item {
    width: 100%;
    align-items: flex-start
}

@media (min-width: 834px) {
    .loan-landing-light__list2 div.item {
        width: 25%;
        padding: 24px 0;
        margin-bottom: 0;
        flex-direction: column
    }
}

.loan-landing-light__list2 div.item span.title {
    color: #1a1a1a;
    text-align: right;
    width: 100%
}

@media (min-width: 834px) {
    .loan-landing-light__list2 div.item span.title {
        margin-top: 32px;
        text-align: center
    }
}

@media (min-width: 992px) {
    .loan-landing-light__list2 div.item span.title {
        font-size: 16px
    }
}

.loan-landing-light__list2 div.item span.subtitle {
    width: 100%;
    color: #1a1a1a;
    margin-top: 8px;
    text-align: right;
    margin-bottom: 40px
}

@media (min-width: 834px) {
    .loan-landing-light__list2 div.item span.subtitle {
        margin-top: 16px;
        text-align: center;
        margin-bottom: 0;
        padding: 0 12px
    }
}

@media (min-width: 992px) {
    .loan-landing-light__list2 div.item span.subtitle {
        font-size: 14px
    }
}

.loan-landing-light__list2 div.number {
    width: 24px
}

@media (min-width: 834px) {
    .loan-landing-light__list2 div.number {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        width: 100%
    }
}

.loan-landing-light__list2 div.number span {
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 12px;
    background-color: #02a67f;
    line-height: 10px
}

.loan-landing-light__list2 div.number div {
    width: 1px;
    height: 75px;
    border-left: 1px dashed #02a67f;
    margin-top: 10px
}

@media (min-width: 834px) {
    .loan-landing-light__list2 div.number div {
        margin-top: 0;
        height: 1px;
        width: calc((100% - 44px)/2);
        border-bottom: 1px dashed #02a67f;
        margin-right: 10px
    }

    .loan-landing-light__list2 div.number div.right {
        margin-right: 0;
        margin-left: 10px
    }

    .loan-landing-light__list2 div.number div.right.index-0,
    .loan-landing-light__list2 div.number div.left.index-3 {
        border-width: 0px
    }
}

.loan-landing-light__list2 div.body {
    width: calc(100% - 24px);
    padding-right: 16px
}

@media (min-width: 834px) {
    .loan-landing-light__list2 div.body {
        width: 100%;
        padding: 0
    }
}

.loan-collateral {
    width: 100vw;
    overflow-x: hidden
}

.loan-collateral__body {
    width: 100%
}

.loan-collateral__body .element3 {
    margin-top: 32px
}

.loan-collateral__body div.input-title {
    color: #fff;
    text-align: right;
    width: 100%;
    margin-top: 32px
}

@media (min-width: 834px) {
    .loan-collateral__body div.input-title {
        font-size: 14px;
        margin-top: 48px
    }
}

@media (min-width: 992px) {
    .loan-collateral__body div.input-title {
        margin-top: 56px;
        font-size: 16px
    }
}

.loan-collateral__collateral {
    width: 100%;
    margin-top: 16px
}

.loan-collateral__collateral img {
    width: 24px;
    height: 24px
}

.loan-collateral__collateral span.code {
    color: #b2b2b2;
    margin-left: 8px
}

.loan-collateral__collateral span.amount {
    color: #fff;
    margin-left: 32px
}

@media (min-width: 992px) {
    .loan-collateral__collateral span.amount {
        font-size: 16px;
        margin-left: 48px
    }
}

.loan-collateral__collateral span.title {
    color: #fff;
    margin-left: 8px
}

.loan-collateral__middle {
    width: 100%
}

@media (min-width: 992px) {
    .loan-collateral__middle {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        margin-top: 40px
    }
}

.loan-collateral__balance-box {
    width: 100%;
    background-color: #222;
    border-radius: 8px;
    padding: 16px;
    margin-top: 32px;
    color: #fff
}

@media (min-width: 992px) {
    .loan-collateral__balance-box {
        width: calc((100% - 30px)/2);
        margin: 0
    }
}

.loan-collateral__balance-box div.row1 {
    width: 100%
}

.loan-collateral__balance-box div.row2 {
    width: 100%;
    margin-top: 32px
}

.loan-collateral__balance-box img.coin-ic {
    width: 24px;
    height: 24px
}

.loan-collateral__balance-box img.balance-ic {
    width: 16px
}

@media (min-width: 992px) {
    .loan-collateral__balance-box span.title {
        font-size: 14px
    }
}

.loan-collateral__balance-box span.code {
    color: #b2b2b2;
    margin-left: 8px
}

.loan-collateral__balance-box span.amount {
    margin-left: 16px
}

.loan-collateral__balance-box span.coin-title {
    margin-left: 8px
}

@media (min-width: 992px) {
    .loan-collateral__balance-box span.coin-title {
        font-size: 14px
    }
}

.loan-collateral__balance-box span.balance-title {
    margin-right: 8px
}

@media (min-width: 992px) {
    .loan-collateral__balance-box span.balance-title {
        font-size: 14px
    }
}

.loan-collateral__balance-box span.increase-balance {
    color: #4ef09d;
    margin-right: 8px;
    cursor: pointer
}

.loan-collateral__price {
    margin-top: 16px;
    width: 100%;
    border-radius: 8px;
    background-color: #222;
    padding: 16px 16px 0
}

@media (min-width: 992px) {
    .loan-collateral__price {
        width: calc((100% - 30px)/2);
        margin: 0
    }
}

.loan-collateral__price div.row {
    width: 100%;
    margin-bottom: 16px
}

.loan-collateral__price div.val {
    color: #fff
}

@media (min-width: 992px) {
    .loan-collateral__price div.val {
        font-size: 14px
    }
}

.loan-collateral__price span.key {
    color: #b2b2b2
}

@media (min-width: 992px) {
    .loan-collateral__price span.key {
        font-size: 14px
    }
}

.loan-collateral__output {
    margin-top: 40px;
    width: 100%;
    border-radius: 8px;
    background-color: #222;
    padding: 16px 16px 0
}

@media (min-width: 834px) {
    .loan-collateral__output {
        flex-direction: row;
        padding: 16px;
        margin-top: 80px
    }
}

.loan-collateral__output div.row {
    width: 100%;
    margin-bottom: 16px
}

@media (min-width: 834px) {
    .loan-collateral__output div.row {
        flex-direction: column;
        height: 100%;
        border-left: 1px dashed #333;
        margin-bottom: 0
    }
}

.loan-collateral__output div.val {
    color: #fff
}

@media (min-width: 834px) {
    .loan-collateral__output div.val {
        margin-top: 16px
    }
}

@media (min-width: 992px) {
    .loan-collateral__output div.val {
        font-size: 16px
    }
}

.loan-collateral__output span.key {
    color: #b2b2b2
}

@media (min-width: 992px) {
    .loan-collateral__output span.key {
        font-size: 16px
    }
}

.loan-collateral__buttons {
    width: 100%;
    margin-top: 8px
}

@media (min-width: 834px) {
    .loan-collateral__buttons {
        justify-content: flex-end
    }
}

.loan-collateral__buttons .button1 {
    width: calc((100% - 16px)/2)
}

@media (min-width: 834px) {
    .loan-collateral__buttons .button1 {
        width: 150px;
        margin-right: 16px
    }
}

.loan-collateral__buttons .button2 {
    width: calc((100% - 16px)/2)
}

@media (min-width: 834px) {
    .loan-collateral__buttons .button2 {
        width: 150px
    }
}

.loan-collateral-light {
    width: 100vw;
    overflow-x: hidden;
    background-color: #e9e9e9
}

.loan-collateral-light__body {
    width: 100%
}

.loan-collateral-light__body .element3-light {
    margin-top: 32px
}

.loan-collateral-light__body div.input-title {
    color: #1a1a1a;
    text-align: right;
    width: 100%;
    margin-top: 32px
}

@media (min-width: 834px) {
    .loan-collateral-light__body div.input-title {
        font-size: 14px;
        margin-top: 48px
    }
}

@media (min-width: 992px) {
    .loan-collateral-light__body div.input-title {
        margin-top: 56px;
        font-size: 16px
    }
}

.loan-collateral-light__collateral {
    width: 100%;
    margin-top: 16px
}

.loan-collateral-light__collateral img {
    width: 24px;
    height: 24px
}

.loan-collateral-light__collateral span.code {
    color: #666;
    margin-left: 8px
}

.loan-collateral-light__collateral span.amount {
    color: #1a1a1a;
    margin-left: 32px
}

@media (min-width: 992px) {
    .loan-collateral-light__collateral span.amount {
        font-size: 16px;
        margin-left: 48px
    }
}

.loan-collateral-light__collateral span.title {
    color: #1a1a1a;
    margin-left: 8px
}

.loan-collateral-light__middle {
    width: 100%
}

@media (min-width: 992px) {
    .loan-collateral-light__middle {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        margin-top: 40px
    }
}

.loan-collateral-light__balance-box {
    width: 100%;
    background-color: #fff;
    border-radius: 8px;
    padding: 16px;
    margin-top: 32px;
    color: #1a1a1a
}

@media (min-width: 992px) {
    .loan-collateral-light__balance-box {
        width: calc((100% - 30px)/2);
        margin: 0
    }
}

.loan-collateral-light__balance-box div.row1 {
    width: 100%
}

.loan-collateral-light__balance-box div.row2 {
    width: 100%;
    margin-top: 32px
}

.loan-collateral-light__balance-box img.coin-ic {
    width: 24px;
    height: 24px
}

.loan-collateral-light__balance-box img.balance-ic {
    width: 16px
}

@media (min-width: 992px) {
    .loan-collateral-light__balance-box span.title {
        font-size: 14px
    }
}

.loan-collateral-light__balance-box span.code {
    color: #666;
    margin-left: 8px
}

.loan-collateral-light__balance-box span.amount {
    margin-left: 16px
}

.loan-collateral-light__balance-box span.coin-title {
    margin-left: 8px
}

@media (min-width: 992px) {
    .loan-collateral-light__balance-box span.coin-title {
        font-size: 14px
    }
}

.loan-collateral-light__balance-box span.balance-title {
    margin-right: 8px
}

@media (min-width: 992px) {
    .loan-collateral-light__balance-box span.balance-title {
        font-size: 14px
    }
}

.loan-collateral-light__balance-box span.increase-balance {
    color: #02a67f;
    margin-right: 8px;
    cursor: pointer
}

.loan-collateral-light__price {
    margin-top: 16px;
    width: 100%;
    border-radius: 8px;
    background-color: #fff;
    padding: 16px 16px 0
}

@media (min-width: 992px) {
    .loan-collateral-light__price {
        width: calc((100% - 30px)/2);
        margin: 0
    }
}

.loan-collateral-light__price div.row {
    width: 100%;
    margin-bottom: 16px
}

.loan-collateral-light__price div.val {
    color: #1a1a1a
}

@media (min-width: 992px) {
    .loan-collateral-light__price div.val {
        font-size: 14px
    }
}

.loan-collateral-light__price span.key {
    color: #666
}

@media (min-width: 992px) {
    .loan-collateral-light__price span.key {
        font-size: 14px
    }
}

.loan-collateral-light__output {
    margin-top: 40px;
    width: 100%;
    border-radius: 8px;
    background-color: #fff;
    padding: 16px 16px 0
}

@media (min-width: 834px) {
    .loan-collateral-light__output {
        flex-direction: row;
        padding: 16px;
        margin-top: 80px
    }
}

.loan-collateral-light__output div.row {
    width: 100%;
    margin-bottom: 16px
}

@media (min-width: 834px) {
    .loan-collateral-light__output div.row {
        flex-direction: column;
        height: 100%;
        border-left: 1px dashed #b2b2b2;
        margin-bottom: 0
    }
}

.loan-collateral-light__output div.val {
    color: #666
}

@media (min-width: 834px) {
    .loan-collateral-light__output div.val {
        margin-top: 16px
    }
}

@media (min-width: 992px) {
    .loan-collateral-light__output div.val {
        font-size: 16px
    }
}

.loan-collateral-light__output span.key {
    color: #1a1a1a
}

@media (min-width: 992px) {
    .loan-collateral-light__output span.key {
        font-size: 16px
    }
}

.loan-collateral-light__buttons {
    width: 100%;
    margin-top: 8px
}

@media (min-width: 834px) {
    .loan-collateral-light__buttons {
        justify-content: flex-end
    }
}

.loan-collateral-light__buttons .button1 {
    width: calc((100% - 16px)/2)
}

@media (min-width: 834px) {
    .loan-collateral-light__buttons .button1 {
        width: 150px;
        margin-right: 16px
    }
}

.loan-collateral-light__buttons .button2 {
    width: calc((100% - 16px)/2)
}

@media (min-width: 834px) {
    .loan-collateral-light__buttons .button2 {
        width: 150px
    }
}

.loan-preview {
    width: 100vw;
    overflow-x: hidden
}

.loan-preview__body {
    width: 100%
}

.loan-preview__body div.input-title {
    color: #fff;
    text-align: right;
    width: 100%;
    margin-top: 32px
}

@media (min-width: 834px) {
    .loan-preview__body div.input-title {
        font-size: 14px;
        margin-top: 48px
    }
}

@media (min-width: 992px) {
    .loan-preview__body div.input-title {
        margin-top: 56px;
        font-size: 16px
    }
}

.loan-preview__data {
    margin-top: 16px;
    width: 100%;
    border-radius: 8px;
    background-color: #222;
    padding: 24px 16px 0
}

.loan-preview__data div.row {
    width: 100%;
    margin-bottom: 20px
}

.loan-preview__data div.line {
    width: 100%;
    height: 1px;
    background-color: #333;
    margin-bottom: 20px
}

.loan-preview__data div.installment {
    color: #4ef09d;
    cursor: pointer;
    width: 100%;
    margin-bottom: 20px
}

.loan-preview__data div.val {
    color: #fff
}

@media (min-width: 992px) {
    .loan-preview__data div.val {
        font-size: 16px
    }
}

.loan-preview__data div.val span.code {
    margin-left: 4px
}

.loan-preview__data span.key {
    color: #b2b2b2
}

@media (min-width: 992px) {
    .loan-preview__data span.key {
        font-size: 16px
    }
}

.loan-preview__output {
    margin-top: 12px;
    width: 100%;
    border-radius: 8px;
    background-color: #222;
    padding: 16px 16px 0
}

@media (min-width: 834px) {
    .loan-preview__output {
        flex-direction: row;
        padding: 16px
    }
}

.loan-preview__output div.row {
    width: 100%;
    margin-bottom: 16px
}

@media (min-width: 834px) {
    .loan-preview__output div.row {
        flex-direction: column;
        height: 100%;
        border-left: 1px dashed #333;
        margin-bottom: 0
    }
}

.loan-preview__output div.val {
    color: #fff
}

@media (min-width: 834px) {
    .loan-preview__output div.val {
        margin-top: 16px
    }
}

@media (min-width: 992px) {
    .loan-preview__output div.val {
        font-size: 16px
    }
}

.loan-preview__output span.key {
    color: #b2b2b2
}

@media (min-width: 992px) {
    .loan-preview__output span.key {
        font-size: 16px
    }
}

.loan-preview__buttons {
    width: 100%;
    margin-top: 8px
}

@media (min-width: 834px) {
    .loan-preview__buttons {
        justify-content: flex-end
    }
}

.loan-preview__buttons .button1 {
    width: calc((100% - 16px)/2)
}

@media (min-width: 834px) {
    .loan-preview__buttons .button1 {
        width: 150px;
        margin-right: 16px
    }
}

.loan-preview__buttons .button2 {
    width: calc((100% - 16px)/2)
}

@media (min-width: 834px) {
    .loan-preview__buttons .button2 {
        width: 150px
    }
}

.loan-preview-light {
    width: 100vw;
    overflow-x: hidden;
    background-color: #e9e9e9
}

.loan-preview-light__body {
    width: 100%
}

.loan-preview-light__body div.input-title {
    color: #1a1a1a;
    text-align: right;
    width: 100%;
    margin-top: 32px
}

@media (min-width: 834px) {
    .loan-preview-light__body div.input-title {
        font-size: 14px;
        margin-top: 48px
    }
}

@media (min-width: 992px) {
    .loan-preview-light__body div.input-title {
        margin-top: 56px;
        font-size: 16px
    }
}

.loan-preview-light__data {
    margin-top: 16px;
    width: 100%;
    border-radius: 8px;
    background-color: #fff;
    padding: 24px 16px 0
}

.loan-preview-light__data div.row {
    width: 100%;
    margin-bottom: 20px
}

.loan-preview-light__data div.line {
    width: 100%;
    height: 1px;
    background-color: #d8d8d8;
    margin-bottom: 20px
}

.loan-preview-light__data div.installment {
    color: #02a67f;
    cursor: pointer;
    width: 100%;
    margin-bottom: 20px
}

.loan-preview-light__data div.val {
    color: #1a1a1a
}

@media (min-width: 992px) {
    .loan-preview-light__data div.val {
        font-size: 16px
    }
}

.loan-preview-light__data div.val span.code {
    margin-left: 4px
}

.loan-preview-light__data span.key {
    color: #666
}

@media (min-width: 992px) {
    .loan-preview-light__data span.key {
        font-size: 16px
    }
}

.loan-preview-light__output {
    margin-top: 12px;
    width: 100%;
    border-radius: 8px;
    background-color: #fff;
    padding: 16px 16px 0
}

@media (min-width: 834px) {
    .loan-preview-light__output {
        flex-direction: row;
        padding: 16px
    }
}

.loan-preview-light__output div.row {
    width: 100%;
    margin-bottom: 16px
}

@media (min-width: 834px) {
    .loan-preview-light__output div.row {
        flex-direction: column;
        height: 100%;
        border-left: 1px dashed #b2b2b2;
        margin-bottom: 0
    }
}

.loan-preview-light__output div.val {
    color: #1a1a1a
}

@media (min-width: 834px) {
    .loan-preview-light__output div.val {
        margin-top: 16px;
        color: #1a1a1a
    }
}

@media (min-width: 992px) {
    .loan-preview-light__output div.val {
        font-size: 16px
    }
}

.loan-preview-light__output span.key {
    color: #666
}

@media (min-width: 992px) {
    .loan-preview-light__output span.key {
        font-size: 16px;
        color: #1a1a1a
    }
}

.loan-preview-light__buttons {
    width: 100%;
    margin-top: 8px
}

@media (min-width: 834px) {
    .loan-preview-light__buttons {
        justify-content: flex-end
    }
}

.loan-preview-light__buttons .button1 {
    width: calc((100% - 16px)/2)
}

@media (min-width: 834px) {
    .loan-preview-light__buttons .button1 {
        width: 150px;
        margin-right: 16px
    }
}

.loan-preview-light__buttons .button2 {
    width: calc((100% - 16px)/2)
}

@media (min-width: 834px) {
    .loan-preview-light__buttons .button2 {
        width: 150px
    }
}

.my-loan {
    width: 100vw;
    overflow-x: hidden
}

.my-loan__body {
    width: 100%;
    height: 100%
}

@media (min-width: 834px) {
    .my-loan__body {
        min-height: 500px
    }
}

.my-loan__body .switch3 {
    margin-bottom: 16px
}

.my-loan__list {
    width: 100%
}

.my-loan__empty {
    width: 100%;
    height: 100%;
    padding: 100px 0
}

@media (min-width: 834px) {
    .my-loan__empty {
        padding: 150px 0
    }
}

.my-loan__empty img {
    max-width: 80px
}

.my-loan__skeleton-wrapper {
    width: 100%
}

.loan-mobile-card {
    width: 100%;
    background-color: #222;
    border-radius: 8px;
    margin-bottom: 16px
}

.loan-mobile-card__head {
    width: 100%;
    padding: 8px;
    border-bottom: 1px solid #333
}

.loan-mobile-card__head div.time,
.loan-mobile-card__head div.code {
    color: #b2b2b2
}

.loan-mobile-card__head div.code span.key {
    color: #fff
}

.loan-mobile-card__head div.code span.val {
    margin-right: 12px
}

.loan-mobile-card__body {
    width: 100%;
    flex-wrap: wrap
}

.loan-mobile-card__body__item {
    width: 50%;
    border-bottom: 1px solid #333;
    border-left: 1px solid #333;
    padding: 8px
}

.loan-mobile-card__body__item.left {
    border-left: 0px
}

.loan-mobile-card__body__item.bottom {
    border-bottom: 0px
}

.loan-mobile-card__body__item span.key {
    color: #b2b2b2
}

.loan-mobile-card__body__item span.val {
    color: #fff
}

.loan-mobile-card__body__item span.val img {
    margin-right: 4px;
    width: 24px
}

.loan-mobile-card__body__item span.btn {
    color: #fff
}

.loan-mobile-card__body__item span.btn.enable {
    color: #4ef09d
}

.loan-desktop-card {
    width: 100%
}

.loan-desktop-card__header {
    width: 100%;
    border-radius: 8px 8px 0 0;
    background-color: #222;
    padding: 16px;
    color: #d8d8d8
}

@media (min-width: 992px) {
    .loan-desktop-card__header {
        font-size: 14px
    }
}

.loan-desktop-card__header span {
    width: 20%
}

.loan-desktop-card__header span.ref,
.loan-desktop-card__header span.btn {
    width: 10%
}

.loan-desktop-card__card {
    width: 100%;
    padding: 16px;
    color: #fff;
    border-bottom: 1px solid #333
}

@media (min-width: 992px) {
    .loan-desktop-card__card {
        font-size: 14px
    }
}

.loan-desktop-card__card span {
    width: 20%
}

.loan-desktop-card__card span.ref,
.loan-desktop-card__card span.btn {
    width: 10%
}

.loan-desktop-card__card span.btn {
    cursor: pointer
}

.loan-desktop-card__card span.btn.enable {
    color: #4ef09d
}

.loan-desktop-card__card img {
    margin-right: 4px
}

.loan-detail-popup {
    width: 100vw;
    height: 100vh;
    background-color: #3a3a3ad1;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 16px
}

@media (min-width: 834px) {
    .loan-detail-popup {
        padding: 0 30%
    }
}

@media (min-width: 992px) {
    .loan-detail-popup {
        padding: 0 38%
    }
}

.loan-detail-popup__body {
    width: 100%;
    background-color: #1a1a1a;
    border-radius: 16px;
    padding: 16px 16px 24px
}

.loan-detail-popup div.close {
    width: 100%
}

.loan-detail-popup div.close img {
    cursor: pointer
}

.loan-detail-popup div.title {
    color: #fff;
    margin-bottom: 8px
}

.loan-detail-popup__row1 {
    width: 100%;
    margin-top: 16px
}

.loan-detail-popup__row1.border {
    border-bottom: 1px solid #222;
    padding-bottom: 16px
}

.loan-detail-popup__row1 div.key {
    color: #b2b2b2
}

.loan-detail-popup__row1 div.val {
    color: #fff
}

.loan-detail-popup__hint {
    width: 100%;
    color: #fff;
    margin-top: 16px
}

.loan-detail-popup__hint img {
    margin-left: 8px
}

.loan-detail-popup__buttons {
    margin-top: 16px;
    width: 100%
}

.loan-detail-popup__buttons .button1,
.loan-detail-popup__buttons .button2 {
    width: calc((100% - 16px)/2)
}

.my-loan-light {
    width: 100vw;
    overflow-x: hidden;
    background-color: #e9e9e9
}

.my-loan-light__body {
    width: 100%;
    height: 100%
}

@media (min-width: 834px) {
    .my-loan-light__body {
        min-height: 500px
    }
}

.my-loan-light__body .switch3 {
    margin-bottom: 16px
}

.my-loan-light__list {
    width: 100%
}

.my-loan-light__empty {
    width: 100%;
    height: 100%;
    padding: 100px 0
}

@media (min-width: 834px) {
    .my-loan-light__empty {
        padding: 150px 0
    }
}

.my-loan-light__empty img {
    max-width: 80px
}

.my-loan-light__skeleton-wrapper {
    width: 100%
}

.loan-mobile-card-light {
    width: 100%;
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 16px
}

.loan-mobile-card-light__head {
    width: 100%;
    padding: 8px;
    border-bottom: 1px solid #d8d8d8
}

.loan-mobile-card-light__head div.time {
    color: #666
}

.loan-mobile-card-light__head div.code {
    color: #b2b2b2
}

.loan-mobile-card-light__head div.code span.key {
    color: #1a1a1a
}

.loan-mobile-card-light__head div.code span.val {
    margin-right: 12px
}

.loan-mobile-card-light__body {
    width: 100%;
    flex-wrap: wrap
}

.loan-mobile-card-light__body__item {
    width: 50%;
    border-bottom: 1px solid #d8d8d8;
    border-left: 1px solid #d8d8d8;
    padding: 8px
}

.loan-mobile-card-light__body__item.left {
    border-left: 0px
}

.loan-mobile-card-light__body__item.bottom {
    border-bottom: 0px
}

.loan-mobile-card-light__body__item span.key {
    color: #666
}

.loan-mobile-card-light__body__item span.val {
    color: #1a1a1a
}

.loan-mobile-card-light__body__item span.val img {
    margin-right: 4px;
    width: 24px
}

.loan-mobile-card-light__body__item span.btn.enable {
    color: #02a67f
}

.loan-desktop-card-light {
    width: 100%
}

.loan-desktop-card-light__header {
    width: 100%;
    border-radius: 8px 8px 0 0;
    background-color: #d8d8d8;
    padding: 16px;
    color: #333
}

@media (min-width: 992px) {
    .loan-desktop-card-light__header {
        font-size: 14px
    }
}

.loan-desktop-card-light__header span {
    width: 20%
}

.loan-desktop-card-light__header span.ref,
.loan-desktop-card-light__header span.btn {
    width: 10%
}

.loan-desktop-card-light__card {
    width: 100%;
    padding: 16px;
    color: #1a1a1a;
    border-bottom: 1px solid #d8d8d8
}

@media (min-width: 992px) {
    .loan-desktop-card-light__card {
        font-size: 14px
    }
}

.loan-desktop-card-light__card span {
    width: 20%
}

.loan-desktop-card-light__card span.ref,
.loan-desktop-card-light__card span.btn {
    width: 10%
}

.loan-desktop-card-light__card span.btn {
    cursor: pointer
}

.loan-desktop-card-light__card span.btn.enable {
    color: #02a67f
}

.loan-desktop-card-light__card img {
    margin-right: 4px
}

.loan-detail-popup-light {
    width: 100vw;
    height: 100vh;
    background-color: #1a1a1ab2;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 16px
}

@media (min-width: 834px) {
    .loan-detail-popup-light {
        padding: 0 30%
    }
}

@media (min-width: 992px) {
    .loan-detail-popup-light {
        padding: 0 38%
    }
}

.loan-detail-popup-light__body {
    width: 100%;
    background-color: #f2f2f2;
    border-radius: 16px;
    padding: 16px 16px 24px
}

.loan-detail-popup-light div.close {
    width: 100%
}

.loan-detail-popup-light div.close img {
    cursor: pointer
}

.loan-detail-popup-light div.title {
    color: #1a1a1a;
    margin-bottom: 8px
}

.loan-detail-popup-light__row1 {
    width: 100%;
    margin-top: 16px
}

.loan-detail-popup-light__row1.border {
    border-bottom: 1px solid #d8d8d8;
    padding-bottom: 16px
}

.loan-detail-popup-light__row1 div.key {
    color: #666
}

.loan-detail-popup-light__row1 div.val {
    color: #1a1a1a
}

.loan-detail-popup-light__hint {
    width: 100%;
    color: #1a1a1a;
    margin-top: 16px
}

.loan-detail-popup-light__hint img {
    margin-left: 8px
}

.loan-detail-popup-light__buttons {
    margin-top: 16px;
    width: 100%
}

.loan-detail-popup-light__buttons .button1,
.loan-detail-popup-light__buttons .button2 {
    width: calc((100% - 16px)/2)
}

.loan-calc {
    width: 100vw;
    overflow-x: hidden
}

.loan-calc__body div.subtitle {
    color: #fff;
    text-align: right;
    width: 100%;
    margin-top: 16px
}

@media (min-width: 834px) {
    .loan-calc__body div.subtitle {
        font-size: 14px
    }
}

.loan-calc__body div.input-title {
    color: #fff;
    text-align: right;
    width: 100%;
    margin-bottom: 12px;
    margin-top: 40px
}

@media (min-width: 834px) {
    .loan-calc__body div.input-title {
        font-size: 14px;
        margin-bottom: 20px;
        margin-top: 48px
    }
}

.loan-calc__skeleton-wrapper {
    width: 100%
}

.loan-calc__collateral {
    width: 100%;
    margin-bottom: 16px;
    flex-wrap: wrap
}

.loan-calc__collateral__item {
    background-color: #222;
    margin-left: 16px;
    padding: 12px;
    border-radius: 8px;
    min-width: calc((100% - 64px)/5);
    border-bottom: 1px solid #222;
    margin-bottom: 16px;
    cursor: pointer
}

@media (min-width: 992px) {
    .loan-calc__collateral__item {
        min-width: calc((100% - 128px) / 9)
    }
}

.loan-calc__collateral__item.last {
    margin-left: 0
}

.loan-calc__collateral__item.selected {
    border-bottom: 1px solid #4ef09d
}

.loan-calc__collateral__item div.currency {
    width: 100%;
    color: #fff
}

.loan-calc__collateral__item div.currency img {
    width: 24px;
    height: 24px
}

.loan-calc__collateral__item div.amount {
    width: 100%;
    margin: 12px 0;
    color: #fff
}

.loan-calc__collateral__item div.ltv {
    width: 100%;
    color: #b2b2b2
}

.loan-calc__installment {
    width: 100%;
    margin-top: 40px
}

.loan-calc__installment__head {
    width: 100%;
    background-color: #222;
    height: 48px;
    border-radius: 8px 8px 0 0;
    color: #d8d8d8
}

.loan-calc__installment__head span {
    width: 25%
}

@media (min-width: 992px) {
    .loan-calc__installment__head {
        font-size: 14px;
        height: 56px
    }
}

.loan-calc__installment__list {
    width: 100%
}

.loan-calc__installment__list div.item {
    width: 100%;
    height: 48px;
    border-bottom: 1px solid #333;
    color: #fff
}

.loan-calc__installment__list div.item.last {
    border-bottom: 0px
}

.loan-calc__installment__list div.item div.tick-button {
    width: 25%;
    justify-content: center;
    padding-right: 4px
}

@media (min-width: 834px) {
    .loan-calc__installment__list div.item div.tick-button p {
        width: unset
    }
}

.loan-calc__installment__list div.item span {
    width: 25%
}

@media (min-width: 992px) {
    .loan-calc__installment__list div.item {
        font-size: 14px;
        height: 56px
    }
}

.loan-calc__installment__lazy {
    width: 100%
}

.loan-calc__installment__lazy__row {
    width: 100%;
    height: 48px;
    padding: 10px 8px
}

@media (min-width: 834px) {
    .loan-calc__installment__lazy__row {
        padding: 10px 16px;
        height: 56px
    }
}

.loan-calc__installment__lazy__row .lazy-1 {
    background-color: #333
}

.loan-calc__output {
    margin-top: 40px;
    width: 100%;
    border-radius: 8px;
    background-color: #222;
    padding: 16px 16px 0
}

@media (min-width: 834px) {
    .loan-calc__output {
        flex-direction: row;
        padding: 16px
    }
}

.loan-calc__output div.row {
    width: 100%;
    margin-bottom: 16px
}

@media (min-width: 834px) {
    .loan-calc__output div.row {
        flex-direction: column;
        height: 100%;
        border-left: 1px dashed #333;
        margin-bottom: 0
    }
}

.loan-calc__output div.val {
    color: #fff
}

@media (min-width: 834px) {
    .loan-calc__output div.val {
        margin-top: 16px
    }
}

@media (min-width: 992px) {
    .loan-calc__output div.val {
        font-size: 16px
    }
}

.loan-calc__output span.key {
    color: #b2b2b2
}

@media (min-width: 992px) {
    .loan-calc__output span.key {
        font-size: 16px
    }
}

.loan-calc__buttons {
    width: 100%;
    margin-top: 24px
}

@media (min-width: 834px) {
    .loan-calc__buttons {
        justify-content: flex-end
    }
}

.loan-calc__buttons .button1 {
    width: calc((100% - 16px)/2)
}

@media (min-width: 834px) {
    .loan-calc__buttons .button1 {
        width: 150px;
        margin-right: 16px
    }
}

.loan-calc__buttons .button2 {
    width: calc((100% - 16px)/2)
}

@media (min-width: 834px) {
    .loan-calc__buttons .button2 {
        width: 150px
    }
}

.loan-calc-light {
    width: 100vw;
    overflow-x: hidden;
    background-color: #e9e9e9
}

.loan-calc-light__body div.subtitle {
    color: #1a1a1a;
    text-align: right;
    width: 100%;
    margin-top: 16px
}

@media (min-width: 834px) {
    .loan-calc-light__body div.subtitle {
        font-size: 14px
    }
}

.loan-calc-light__body div.input-title {
    color: #1a1a1a;
    text-align: right;
    width: 100%;
    margin-bottom: 12px;
    margin-top: 40px
}

@media (min-width: 834px) {
    .loan-calc-light__body div.input-title {
        font-size: 14px;
        margin-bottom: 20px;
        margin-top: 48px
    }
}

.loan-calc-light__skeleton-wrapper {
    width: 100%
}

.loan-calc-light__collateral {
    width: 100%;
    margin-bottom: 16px;
    flex-wrap: wrap
}

.loan-calc-light__collateral__item {
    background-color: #fff;
    margin-left: 16px;
    padding: 12px;
    border-radius: 8px;
    border-bottom: 1px solid #fff;
    min-width: calc((100% - 64px)/5);
    margin-bottom: 16px;
    cursor: pointer
}

@media (min-width: 992px) {
    .loan-calc-light__collateral__item {
        min-width: calc((100% - 128px) / 9)
    }
}

.loan-calc-light__collateral__item.last {
    margin-left: 0
}

.loan-calc-light__collateral__item.selected {
    border-bottom: 1px solid #02a67f
}

.loan-calc-light__collateral__item div.currency {
    width: 100%;
    color: #1a1a1a
}

.loan-calc-light__collateral__item div.currency img {
    width: 24px;
    height: 24px
}

.loan-calc-light__collateral__item div.amount {
    width: 100%;
    margin: 12px 0;
    color: #1a1a1a
}

.loan-calc-light__collateral__item div.ltv {
    width: 100%;
    color: #666
}

.loan-calc-light__installment {
    width: 100%;
    margin-top: 40px
}

.loan-calc-light__installment__head {
    width: 100%;
    background-color: #d8d8d8;
    height: 48px;
    border-radius: 8px 8px 0 0;
    color: #333
}

.loan-calc-light__installment__head span {
    width: 25%
}

@media (min-width: 992px) {
    .loan-calc-light__installment__head {
        font-size: 14px;
        height: 56px
    }
}

.loan-calc-light__installment__list {
    width: 100%
}

.loan-calc-light__installment__list div.item {
    width: 100%;
    height: 48px;
    border-bottom: 1px solid #d8d8d8;
    color: #1a1a1a
}

.loan-calc-light__installment__list div.item.last {
    border-bottom: 0px
}

.loan-calc-light__installment__list div.item div.tick-button {
    width: 25%;
    justify-content: center;
    padding-right: 4px
}

@media (min-width: 834px) {
    .loan-calc-light__installment__list div.item div.tick-button p {
        width: unset
    }
}

.loan-calc-light__installment__list div.item span {
    width: 25%
}

@media (min-width: 992px) {
    .loan-calc-light__installment__list div.item {
        font-size: 14px;
        height: 56px
    }
}

.loan-calc-light__installment__lazy {
    width: 100%
}

.loan-calc-light__installment__lazy__row {
    width: 100%;
    height: 48px;
    padding: 10px 8px
}

@media (min-width: 834px) {
    .loan-calc-light__installment__lazy__row {
        padding: 10px 16px;
        height: 56px
    }
}

.loan-calc-light__installment__lazy__row .lazy-1 {
    background-color: #333
}

.loan-calc-light__output {
    margin-top: 40px;
    width: 100%;
    border-radius: 8px;
    background-color: #fff;
    padding: 16px 16px 0
}

@media (min-width: 834px) {
    .loan-calc-light__output {
        flex-direction: row;
        padding: 16px
    }
}

.loan-calc-light__output div.row {
    width: 100%;
    margin-bottom: 16px
}

@media (min-width: 834px) {
    .loan-calc-light__output div.row {
        flex-direction: column;
        height: 100%;
        border-left: 1px dashed #b2b2b2;
        margin-bottom: 0
    }
}

.loan-calc-light__output div.val {
    color: #1a1a1a
}

@media (min-width: 834px) {
    .loan-calc-light__output div.val {
        margin-top: 16px;
        color: #666
    }
}

@media (min-width: 992px) {
    .loan-calc-light__output div.val {
        font-size: 16px
    }
}

.loan-calc-light__output span.key {
    color: #666
}

@media (min-width: 992px) {
    .loan-calc-light__output span.key {
        font-size: 16px;
        color: #1a1a1a
    }
}

.loan-calc-light__buttons {
    width: 100%;
    margin-top: 24px
}

@media (min-width: 834px) {
    .loan-calc-light__buttons {
        justify-content: flex-end
    }
}

.loan-calc-light__buttons .button1 {
    width: calc((100% - 16px)/2)
}

@media (min-width: 834px) {
    .loan-calc-light__buttons .button1 {
        width: 150px;
        margin-right: 16px
    }
}

.loan-calc-light__buttons .button2 {
    width: calc((100% - 16px)/2)
}

@media (min-width: 834px) {
    .loan-calc-light__buttons .button2 {
        width: 150px
    }
}

.staking-page {
    width: 100vw
}

.staking-page__pattern-left {
    position: absolute;
    left: 0;
    top: 420px
}

.staking-page__pattern-right {
    position: absolute;
    right: 0;
    top: 0
}

.staking-page-light {
    width: 100vw;
    background-color: #e9e9e9
}

.staking-page-light__pattern-left {
    position: absolute;
    left: 0;
    top: 420px
}

.staking-page-light__pattern-right {
    position: absolute;
    right: 0;
    top: 0
}

.bot {
    width: 100vw;
    height: auto
}

.credit.light {
    background-color: #e9e9e9
}

.hamster-page__pattern-left {
    position: absolute;
    left: 0;
    top: 420px
}

.hamster-page__pattern-right {
    position: absolute;
    right: 0;
    top: 0
}

.entrance-wrapper .entrance-container {
    padding-top: 56px
}

@media (min-width: 834px) {
    .entrance-wrapper .entrance-container {
        padding-top: 64px
    }
}

.entrance-wrapper input {
    user-select: text !important;
    -webkit-user-select: text !important
}

.support-ticket {
    width: 100vw
}

.support-ticket .network-dropdown__list.open,
.support-ticket .network-dropdown-light__list.open {
    height: 100px !important
}

.support-ticket__body {
    padding: 16px 16px 40px
}

@media (min-width: 834px) {
    .support-ticket__body {
        margin: 20px 35%;
        padding: 16px;
        border-radius: 16px;
        background-color: var(--surface_primary)
    }
}

.support-ticket__cat-dropdown {
    width: 100%
}

.support-ticket__cat-dropdown .dropdown1__list.open {
    height: 100px !important
}

.support-ticket__head {
    color: var(--body_text_primary);
    margin: 10px 0
}

.support-ticket__label {
    width: 100%;
    text-align: right;
    color: var(--body_text_primary);
    margin-bottom: 8px
}

.support-ticket__text1 {
    width: 100%;
    text-align: right;
    color: var(--body_text_primary)
}

.support-ticket__text2 {
    width: 100%;
    text-align: right;
    color: var(--body_text_primary);
    margin-top: 20px;
    margin-bottom: 4px
}

.hamster-token-page-body {
    --text-link-color: #74a5eb;
    --header-gradient: linear-gradient(0deg, rgba(78, 240, 157, .09) 0%, rgba(34, 34, 34, .1) 100%);
    --content-top-gradient: linear-gradient(0, rgba(32, 32, 32, 0) -4.35%, rgba(32, 32, 32, .5) 32.17%, #222 100%);
    --content-bottom-gradient: linear-gradient(180deg, rgba(32, 32, 32, 0) -4.35%, rgba(32, 32, 32, .5) 32.17%, #222 100%)
}

.hamster-token-page-body.light {
    --text-link-color: #134094;
    --header-gradient: linear-gradient(0deg, rgba(78, 240, 157, .18) 0%, rgba(255, 255, 255, .2) 100%);
    --content-top-gradient: linear-gradient(0deg, rgba(255, 255, 255, 0) -4.35%, rgba(255, 255, 255, .5) 32.17%, #ffffff 100%);
    --content-bottom-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0) -4.35%, rgba(255, 255, 255, .5) 32.17%, #ffffff 100%)
}

.hamster-token-page {
    display: flex;
    height: calc(var(--vh, 1vh) * 100);
    flex-direction: column
}

@media (min-width: 834px) {
    .hamster-token-page {
        max-width: 730px;
        margin: 0 auto
    }
}

.hamster-token-page .accent-text {
    color: var(--body_text_accent)
}

.hamster-token-page>.header {
    padding: 24px 16px 57px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 12px;
    border-bottom: 1px solid rgba(78, 240, 157, .0509803922);
    height: fit-content;
    background: var(--header-gradient)
}

.hamster-token-page>.header>.title {
    color: var(--body_text_primary);
    font-size: 14px;
    font-weight: 500
}

.hamster-token-page>.header>.title .accent-text {
    font-size: 16px;
    font-weight: 600
}

.hamster-token-page>.header>.hamster {
    width: 100px
}

@media (min-width: 834px) {
    .hamster-token-page>.header {
        background: transparent;
        padding-top: 126px
    }

    .hamster-token-page>.header>.title {
        font-size: 28px;
        font-weight: 400;
        line-height: 50px
    }

    .hamster-token-page>.header>.title .accent-text {
        font-size: 28px;
        font-weight: 600
    }

    .hamster-token-page>.header>.hamster {
        width: 120px
    }
}

.hamster-token-page>.content {
    width: 100%;
    flex: 1;
    height: calc(100% + 33px);
    max-height: calc(100% + 33px);
    margin-top: -33px;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    overflow: hidden
}

.hamster-token-page>.content>.announcement {
    flex: 1;
    width: 100%;
    background-color: var(--surface_octonary);
    border: 1px solid var(--border_line_tertiary);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    padding: 16px 0
}

.hamster-token-page>.content>.announcement>.scroll-shadow {
    position: absolute;
    pointer-events: none;
    display: block;
    left: 0;
    right: 0;
    height: 46px;
    z-index: 1;
    transition: opacity 75ms linear;
    will-change: opacity
}

.hamster-token-page>.content>.announcement>.scroll-shadow:not(.visible) {
    visibility: hidden;
    opacity: 0
}

.hamster-token-page>.content>.announcement>.scroll-shadow.top {
    top: 14px;
    background: var(--content-top-gradient)
}

.hamster-token-page>.content>.announcement>.scroll-shadow.bottom {
    bottom: 14px;
    background: var(--content-bottom-gradient)
}

.hamster-token-page>.content>.announcement>.announcement-content {
    width: 100%;
    padding: 0 16px;
    overflow: auto;
    height: 100%;
    direction: ltr
}

.hamster-token-page>.content>.announcement>.announcement-content>* {
    direction: rtl
}

.hamster-token-page>.content>.announcement>.announcement-content::-webkit-scrollbar {
    display: unset;
    width: 6px
}

.hamster-token-page>.content>.announcement>.announcement-content::-webkit-scrollbar-track {
    background: var(--surface_octonary)
}

.hamster-token-page>.content>.announcement>.announcement-content::-webkit-scrollbar-thumb {
    background: #666;
    border-radius: 10px
}

.hamster-token-page>.content>.announcement>.announcement-content>.title {
    display: flex;
    align-items: center;
    font-size: 11px
}

.hamster-token-page>.content>.announcement>.announcement-content>.title>.lamp-icon {
    width: 14px;
    margin-left: 4px
}

.hamster-token-page>.content>.announcement>.announcement-content>.context {
    color: var(--body_text_primary);
    display: flex;
    flex-direction: column;
    padding: 12px 0;
    font-size: 12px
}

.hamster-token-page>.content>.announcement>.announcement-content>.context p {
    margin-top: 4px
}

.hamster-token-page>.content>.announcement>.announcement-content>.context span {
    margin-top: 4px
}

.hamster-token-page>.content>.announcement>.announcement-content>.context span.link {
    cursor: pointer;
    color: var(--text-link-color);
    text-decoration: solid;
    text-decoration-color: var(--text-link-color)
}

.hamster-token-page>.content>.announcement>.announcement-content>.context>.break {
    display: block;
    width: 100%;
    height: 24px
}

@media (min-width: 834px) {
    .hamster-token-page>.content>.announcement>.announcement-content>.title {
        font-size: 16px
    }

    .hamster-token-page>.content>.announcement>.announcement-content>.title>.lamp-icon {
        width: 24px
    }

    .hamster-token-page>.content>.announcement>.announcement-content>.context {
        font-size: 14px
    }
}

.hamster-token-page>.content>.actions {
    display: flex;
    flex-direction: column;
    padding: 32px 0
}

.hamster-token-page>.content>.actions>.description {
    color: var(--body_text_primary);
    font-size: 14px
}

.hamster-token-page>.content>.actions>.buttons {
    display: flex;
    margin-top: 32px
}

.hamster-token-page>.content>.actions>.buttons>.continue-button {
    margin-left: 12px
}

@media (max-width: 834px) {
    .hamster-token-page>.content>.actions>.buttons>button {
        flex: 1
    }

    .hamster-token-page>.content>.actions>.buttons>button.continue-button {
        flex: 2
    }
}

@media (min-width: 834px) {
    .hamster-token-page>.content>.actions {
        padding-bottom: 90px
    }

    .hamster-token-page>.content>.actions>.description {
        font-size: 16px
    }
}

.hamster-token-page>.background-lines {
    position: fixed;
    display: none;
    pointer-events: none
}

@media (min-width: 834px) {
    .hamster-token-page>.background-lines {
        display: block
    }
}

.hamster-token-page>.background-lines.right {
    top: 64px;
    right: 0
}

.hamster-token-page>.background-lines.left {
    bottom: 0;
    left: 0
}

.hamster-token-result-page-html,
.hamster-token-result-page-html #root,
.hamster-token-result-page-body {
    height: 100%
}

.hamster-token-result-page {
    display: flex;
    flex-direction: column;
    height: 100%;
    max-width: 1110px;
    margin: 0 auto;
    --status-box-color: #74a5eb;
    --bullet-color: #4ef09d;
    --paid-color: var(--border_line_quaternary);
    --status-box-bg: linear-gradient(0deg, rgba(116, 165, 235, .15), rgba(116, 165, 235, .15)), linear-gradient(0deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .2))
}

.hamster-token-result-page.light {
    --status-box-color: #134094;
    --paid-color: #666;
    --status-box-bg: linear-gradient(0deg, rgba(255, 255, 255, .3), rgba(255, 255, 255, .3)), linear-gradient(0deg, rgba(72, 135, 246, .15), rgba(72, 135, 246, .15))
}

.hamster-token-result-page>.status {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 16px
}

.hamster-token-result-page>.status>.status-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 730px
}

.hamster-token-result-page>.status>.status-box.inprogress {
    background-color: var(--surface_octonary);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 730px
}

.hamster-token-result-page>.status>.status-box.inprogress img {
    width: 40px !important
}

@media (min-width: 834px) {
    .hamster-token-result-page>.status>.status-box.inprogress img {
        width: 56px
    }
}

.hamster-token-result-page>.status>.status-box.paid {
    background-color: var(--surface_octonary);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 730px
}

.hamster-token-result-page>.status>.status-box.paid img {
    width: 40px !important
}

@media (min-width: 834px) {
    .hamster-token-result-page>.status>.status-box.paid img {
        width: 56px
    }
}

.hamster-token-result-page>.status>.status-box>.hamster-icon {
    width: 112px
}

.hamster-token-result-page>.status>.status-box>.title {
    color: var(--body_text_primary);
    margin-top: 24px;
    text-align: center;
    font-size: 14px;
    font-weight: 500
}

.hamster-token-result-page>.status>.status-box>.title.accent {
    color: var(--body_text_accent)
}

.hamster-token-result-page>.status>.status-box>.description {
    color: var(--card_desc);
    text-align: center;
    font-size: 12px;
    margin-top: 8px
}

.hamster-token-result-page>.status>.status-box>.description span.accent {
    color: var(--body_text_accent);
    font-weight: 500
}

.hamster-token-result-page>.status>.status-box>.pay-info {
    width: 100%;
    border-top: 1px solid var(--border_line_tertiary);
    padding-top: 16px;
    margin-top: 16px
}

@media (min-width: 834px) {
    .hamster-token-result-page>.status>.status-box>.pay-info {
        display: flex;
        justify-content: space-between;
        padding-top: 20px
    }
}

.hamster-token-result-page>.status>.status-box>.pay-info div {
    width: 100%;
    display: flex;
    justify-content: space-between
}

@media (min-width: 834px) {
    .hamster-token-result-page>.status>.status-box>.pay-info div {
        width: 30%
    }
}

.hamster-token-result-page>.status>.status-box>.pay-info div.second {
    margin-top: 8px
}

@media (min-width: 834px) {
    .hamster-token-result-page>.status>.status-box>.pay-info div.second {
        margin-top: 0
    }
}

.hamster-token-result-page>.status>.status-box>.pay-info div span.key {
    color: var(--paid-color)
}

.hamster-token-result-page>.status>.status-box>.pay-info div span.val {
    color: var(--body_text_primary)
}

@media (min-width: 834px) {
    .hamster-token-result-page>.status>.status-box>.pay-info div span.val {
        font-size: 14px
    }
}

.hamster-token-result-page>.status>.bullets>.title {
    color: var(--body_text_primary);
    margin: 48px 0 12px;
    font-size: 16px
}

.hamster-token-result-page>.status>.bullets>.list-container {
    padding-right: 16px
}

.hamster-token-result-page>.status>.bullets>.list-container>.list-item {
    color: var(--body_text_secondary);
    font-size: 12px;
    font-weight: 500;
    line-height: 24px;
    position: relative
}

.hamster-token-result-page>.status>.bullets>.list-container>.list-item:after {
    content: "";
    position: absolute;
    top: 8px;
    right: -16px;
    width: 8px;
    height: 8px;
    background-color: var(--body_text_accent);
    border-radius: 50%
}

.hamster-token-result-page>.status>.bullets>.list-container>.list-item .bold {
    color: var(--body_text_primary)
}

.hamster-token-result-page>.status>.bullets>.list-container>.list-item .link {
    color: var(--status-box-color);
    text-decoration: none
}

.hamster-token-result-page>.status>.bullets>.list-container>.list-item>p:not(:last-child) {
    margin-bottom: 14px
}

@media (min-width: 834px) {
    .hamster-token-result-page>.status>.status-box>.title {
        font-size: 16px
    }

    .hamster-token-result-page>.status>.status-box>.description {
        font-size: 14px;
        margin-top: 16px
    }

    .hamster-token-result-page>.status>.bullets {
        width: 100%
    }

    .hamster-token-result-page>.status>.bullets>.title {
        font-size: 20px;
        margin-top: 90px
    }

    .hamster-token-result-page>.status>.bullets>.list-container>.list-item {
        font-size: 14px
    }
}

.hamster-token-result-page>.transactions {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 0 16px
}

.hamster-token-result-page>.transactions.empty {
    padding: 30px 0
}

.hamster-token-result-page>.transactions>.empty {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%
}

.hamster-token-result-page>.transactions>.empty>.icon {
    width: 100px
}

.hamster-token-result-page>.transactions>.transaction-card {
    border: 1px solid var(--border_line_tertiary);
    background-color: var(--surface_octonary);
    border-radius: 8px;
    padding: 12px;
    max-height: fit-content
}

.hamster-token-result-page>.transactions>.transaction-card:not(:last-child) {
    margin-bottom: 12px
}

.hamster-token-result-page>.transactions>.transaction-card>.title-container {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.hamster-token-result-page>.transactions>.transaction-card>.title-container>.title {
    color: var(--body_text_accent);
    font-size: 12px;
    font-weight: 300
}

.hamster-token-result-page>.transactions>.transaction-card>.title-container>.title>.tokens-count {
    font-size: 14px;
    font-weight: 500;
    margin-left: 6px
}

.hamster-token-result-page>.transactions>.transaction-card>.title-container>.status {
    color: var(--status-box-color);
    padding: 2px 8px;
    font-size: 10px;
    border-radius: 4px;
    background: var(--status-box-bg)
}

.hamster-token-result-page>.transactions>.transaction-card>.rows {
    display: flex;
    flex-direction: column;
    padding: 8px 0 12px
}

.hamster-token-result-page>.transactions>.transaction-card>.rows>.card-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 4px 0
}

.hamster-token-result-page>.transactions>.transaction-card>.rows>.card-row>.title-group {
    color: var(--body_text_secondary);
    font-size: 11px;
    font-weight: 300;
    display: flex;
    align-items: center
}

.hamster-token-result-page>.transactions>.transaction-card>.rows>.card-row>.title-group>.info-button {
    display: inline-block;
    width: 13px;
    height: 13px;
    margin-right: 4px;
    cursor: pointer
}

.hamster-token-result-page>.transactions>.transaction-card>.rows>.card-row>.value-group {
    color: var(--body_text_primary);
    font-size: 12px;
    font-weight: 400;
    display: flex;
    align-items: center
}

.hamster-token-result-page>.transactions>.transaction-card>.rows>.card-row>.value-group>.link-value {
    display: flex;
    align-items: center;
    cursor: pointer
}

.hamster-token-result-page>.transactions>.transaction-card>.rows>.card-row>.value-group>.link-value>.link-content {
    text-decoration: underline;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 180px;
    direction: ltr
}

.hamster-token-result-page>.transactions>.transaction-card>.rows>.card-row>.value-group>.link-value>.link-icon {
    width: 20px;
    margin-right: 8px
}

.hamster-token-result-page>.transactions>.transaction-card>.rows>.card-row>.value-group>.bullet {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    margin-left: 4px
}

.hamster-token-result-page>.transactions>.transaction-card>.rows>.card-row>.value-group>.bullet.notAcceptable {
    background-color: #ff5a5a
}

.hamster-token-result-page>.transactions>.transaction-card>.rows>.card-row>.value-group>.bullet.paid {
    background-color: var(--body_text_accent)
}

.hamster-token-result-page>.transactions>.transaction-card>.rows>.card-row>.value-group>.bullet.inprogress {
    background-color: var(--status-box-color)
}

.hamster-token-result-page>.transactions>.transaction-card>.rows>.card-row>.value-group>.bullet.notRegistered {
    background-color: #e2c003
}

@media (min-width: 834px) {
    .hamster-token-result-page>.transactions {
        --card-width: minmax(auto, 360px);
        display: grid;
        grid-template: auto/var(--card-width) var(--card-width);
        grid-gap: 16px;
        justify-content: center
    }

    .hamster-token-result-page>.transactions.empty {
        grid-template: unset;
        padding: 100px 0
    }

    .hamster-token-result-page>.transactions>.transaction-card {
        margin-bottom: 0 !important
    }

    .hamster-token-result-page>.transactions>.empty {
        width: 100px;
        height: 100%;
        max-width: 100px
    }
}

@media (min-width: 834px) and (min-width: 992px) {
    .hamster-token-result-page>.transactions {
        grid-template: auto/var(--card-width) var(--card-width) var(--card-width)
    }

    .hamster-token-result-page>.transactions.empty {
        grid-template: unset
    }
}

.hamster-token-result-page>.footer {
    position: sticky;
    bottom: 0;
    border-top: 1px solid var(--border_line_tertiary);
    background-color: var(--surface_primary);
    padding: 12px 16px;
    margin-top: 20px
}

.hamster-token-result-page>.footer>.title {
    display: flex;
    font-size: 12px
}

.hamster-token-result-page>.footer>.title>.total {
    color: var(--body_text_secondary)
}

.hamster-token-result-page>.footer>.title>.value {
    color: var(--body_text_primary);
    margin-right: 12px
}

.hamster-token-result-page>.footer>.actions {
    display: flex;
    width: 100%;
    justify-content: space-between
}

.hamster-token-result-page>.footer>.actions>button:not(.primary) {
    margin-right: 16px
}

@media (min-width: 834px) {
    .hamster-token-result-page>.footer {
        position: static;
        background-color: transparent;
        border: 0;
        align-self: self-end;
        padding-bottom: 90px
    }

    .hamster-token-result-page>.footer>.actions>button {
        padding: 0 24px;
        width: fit-content
    }
}

.hamster-token-result-page>.background-lines {
    position: fixed;
    display: none;
    pointer-events: none
}

@media (min-width: 834px) {
    .hamster-token-result-page>.background-lines {
        display: block
    }
}

.hamster-token-result-page>.background-lines.right {
    top: 64px;
    right: 0
}

.hamster-token-result-page>.background-lines.left {
    bottom: 0;
    left: 0
}

.hamster-token-result-page__info-modal {
    color: var(--body_text_primary);
    max-height: calc(100vh - 250px);
    overflow: auto;
    direction: ltr
}

.hamster-token-result-page__info-modal>* {
    direction: rtl
}

.hamster-token-result-page__info-modal::-webkit-scrollbar {
    display: unset;
    width: 6px
}

.hamster-token-result-page__info-modal::-webkit-scrollbar-track {
    background: var(--surface_octonary)
}

.hamster-token-result-page__info-modal::-webkit-scrollbar-thumb {
    background: #666;
    border-radius: 10px
}

.hamster-token-result-page__info-modal h2 {
    margin-top: 12px;
    text-align: center
}

.hamster-token-result-page__info-modal p {
    margin-top: 8px;
    text-align: center
}

.hamster-token-result-page__info-modal p span.link {
    color: var(--status-box-color);
    text-decoration: dashed;
    cursor: pointer;
    text-decoration-color: var(--status-box-color)
}

.hamster-token-result-page__info-modal div.info-row {
    width: 100%;
    color: var(--body_text_primary);
    text-align: right;
    margin: 24px 0
}

.hamster-token-result-page__info-modal div.info-row p {
    width: 100%;
    text-align: right
}

.hamster-token-result-page__info-modal div.info-row>.bullets {
    padding-right: 16px
}

.hamster-token-result-page__info-modal div.info-row>.bullets>li {
    position: relative
}

.hamster-token-result-page__info-modal div.info-row>.bullets>li:before {
    content: "";
    position: absolute;
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--bullet-color);
    right: -16px;
    top: 8px
}

.hamster-token-result-page__info-modal__button {
    width: 100%;
    margin-top: 24px;
    position: sticky;
    bottom: 0
}

.lazy-1 {
    z-index: 20;
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
    overflow: hidden;
    border-radius: 8px
}

.lazy-1__body {
    width: 100%;
    height: 100%
}

.lazy-1__body div.box {
    left: 0;
    position: absolute;
    background-color: #222;
    opacity: .5;
    width: 25%;
    height: 100%;
    animation-duration: .7s;
    animation-name: move;
    animation-iteration-count: infinite;
    animation-fill-mode: both
}

.lazy-1-light {
    z-index: 20;
    width: 100%;
    height: 100%;
    background-color: #e9e9e9;
    overflow: hidden;
    border-radius: 8px
}

.lazy-1-light__body {
    width: 100%;
    height: 100%
}

.lazy-1-light__body div.box {
    left: 0;
    position: absolute;
    background-color: #fff;
    opacity: .5;
    width: 25%;
    height: 100%;
    animation-duration: .7s;
    animation-name: move;
    animation-iteration-count: infinite;
    animation-fill-mode: both
}

@keyframes move {
    0% {
        transform: translate(-100%)
    }

    to {
        transform: translate(400%)
    }
}

.banner-card {
    width: 100%;
    margin-bottom: 30px
}

.banner-card__banner {
    margin-top: 4px;
    width: 100%;
    height: calc((100vw - 32px)*.5625)
}

.banner-card__banner ul {
    flex-direction: row-reverse !important
}

.banner-card__banner div.item {
    cursor: pointer;
    width: 100%;
    height: calc((100vw - 32px)*.5625);
    padding: 0 5px
}

@media (min-width: 992px) {
    .banner-card__banner div.item {
        margin-left: 30px
    }
}

.banner-card__banner div.item img {
    width: 100%;
    border-radius: 15px;
    height: calc((100vw - 32px)*.5625)
}

.banner-card__banner div.bottom {
    width: 100%;
    height: 10px;
    flex-direction: row-reverse !important;
    margin: 8px 0
}

.banner-card__list {
    overflow-x: scroll;
    width: 100%
}

.banner-card__list div.wrapper1 {
    display: flex;
    flex-direction: row;
    overflow-y: hidden;
    overflow-x: auto
}

.banner-card__list div.wrapper2 {
    direction: rtl
}

.banner-card__banner-loading {
    width: 100%;
    height: calc((100vw - 32px)*.5625)
}

.banner-card__banner-loading .element5 {
    border: unset;
    width: 70px;
    height: 70px
}

.calender {
    background-color: var(--surface_secondary);
    border-radius: 8px;
    width: 100%;
    height: 48px;
    cursor: pointer !important;
    border-bottom: 1px solid var(--border_line_secondary)
}

.calender.show,
.calender.filled {
    border-bottom: 1px solid var(--border_line_primary)
}

.calender.error {
    border-bottom: 1px solid var(--helper_red)
}

.calender input {
    color: var(--body_text_primary);
    outline: none;
    padding: 16px;
    border: none;
    height: 100%;
    width: 100%;
    background-color: transparent;
    cursor: pointer !important
}

@media (min-width: 834px) {
    .calender input {
        font-size: 14px
    }
}

.calender input::placeholder {
    color: var(--text_on_disable_secondary)
}

.calender__icon {
    position: absolute;
    height: 100%;
    left: 16px;
    top: 0;
    cursor: pointer
}

.calender__close {
    position: absolute;
    width: 90vw;
    top: calc((100vh - 370px)/2 + 12px);
    left: calc(5vw + 12px)
}

.calender__close img {
    cursor: pointer;
    z-index: 102
}

@media (min-width: 992px) {
    .calender__close {
        left: unset;
        width: 298px
    }
}

.calender__wrapper.modal {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--popup-bg-color);
    z-index: 101
}

.calender__calendar {
    display: none;
    position: absolute;
    background-color: var(--surface_secondary);
    --cl-color-black: $_ffffff;
    --cl-color-disabled: $_ffffff
}

.calender__calendar.light .Calendar__monthArrowWrapper.-right span {
    background-image: url(../../../assets/arrow-left-1a1a1a.svg)
}

.calender__calendar.light .Calendar__monthArrowWrapper.-left span {
    background-image: url(../../../assets/arrow-left-1a1a1a.svg)
}

.calender__calendar.modal {
    position: relative;
    z-index: 103;
    width: 90vw;
    height: 370px;
    padding-top: 40px
}

@media (min-width: 992px) {
    .calender__calendar.modal {
        width: 330px
    }
}

.calender__calendar .Calendar__monthArrowWrapper.-right span {
    background-image: url(../../../assets/arrow-left.svg);
    transform: rotate(90deg)
}

.calender__calendar .Calendar__monthArrowWrapper.-left span {
    background-image: url(../../../assets/arrow-left.svg);
    transform: rotate(90deg)
}

.calender__calendar .Calendar__day.-today:not(.-selectedStart):not(.-selectedEnd):not(.-selectedBetween):after {
    background: var(--body_text_accent) !important
}

.calender__calendar .Calendar__day {
    color: var(--body_text_primary) !important
}

.calender__calendar .Calendar__day.-selected {
    background-color: var(--body_text_accent) !important;
    color: #1a1a1a !important
}

.calender__calendar .Calendar__day.-weekend {
    color: #ff5a5a !important
}

.calender__calendar .Calendar__day.-today {
    color: var(--body_text_accent) !important;
    font-weight: 700 !important
}

.calender__calendar .Calendar__day:hover {
    color: #1a1a1a !important
}

.calender__calendar .Calendar__day:hover.-weekend {
    color: #ff5a5a !important
}

.calender__calendar .Calendar__day:hover.-today {
    color: var(--body_text_accent) !important
}

.calender__calendar .Calendar__weekDay {
    color: #d8d8d8
}

.calender__calendar .Calendar__monthText {
    color: var(--body_text_primary)
}

.calender__calendar .Calendar__monthText:hover {
    background-color: var(--surface_tertiary)
}

.calender__calendar .Calendar__yearText {
    color: var(--body_text_primary)
}

.calender__calendar .Calendar__yearText:hover {
    background-color: var(--surface_tertiary)
}

.calender__calendar.show {
    display: inherit !important;
    z-index: 100
}

.currencies-card {
    width: 100%;
    background-color: var(--surface_octonary);
    border-radius: 16px;
    margin-top: 20px;
    padding: 12px 0 20px;
    height: 420px
}

.currencies-card .switch3 {
    margin-bottom: 8px
}

@media (min-width: 834px) {
    .currencies-card .switch3 :first-child {
        margin-right: 24px
    }
}

@media (min-width: 992px) {
    .currencies-card .switch3 {
        margin-bottom: 24px
    }

    .currencies-card .switch3 :first-child {
        margin-right: 40px
    }
}

@media (min-width: 834px) {
    .currencies-card .switch3 div {
        padding-bottom: 16px
    }
}

.currencies-card .switch1 {
    position: absolute;
    left: 40px;
    top: 16px
}

@media (min-width: 834px) {
    .currencies-card {
        padding-top: 24px;
        height: unset
    }
}

@media (min-width: 992px) {
    .currencies-card {
        margin-top: 88px;
        padding: 24px 0 32px
    }
}

.currencies-card__header {
    width: 100%;
    padding: 0 16px 8px;
    border-bottom: 1px solid var(--border_line_quinary);
    margin-bottom: 16px;
    justify-content: space-between
}

@media (min-width: 834px) {
    .currencies-card__header {
        border-bottom: unset;
        padding: 0 24px;
        margin-bottom: 24px
    }
}

@media (min-width: 992px) {
    .currencies-card__header {
        padding: 0 40px
    }
}

.currencies-card__header div {
    color: var(--body_text_primary)
}

@media (min-width: 992px) {
    .currencies-card__header div {
        font-size: 14px
    }
}

.currencies-card__header div.info {
    width: 40%
}

@media (min-width: 834px) {
    .currencies-card__header div.info {
        width: calc(60% - 200px)
    }
}

@media (min-width: 992px) {
    .currencies-card__header div.info {
        width: 25%
    }
}

.currencies-card__header div.price {
    width: calc(60% - 80px);
    direction: rtl
}

@media (min-width: 834px) {
    .currencies-card__header div.price {
        width: 20%
    }
}

.currencies-card__header div.diff {
    width: 80px;
    text-align: center
}

@media (min-width: 992px) {
    .currencies-card__header div.diff {
        width: 15%
    }
}

.currencies-card__header div.market-chart {
    width: 20%;
    justify-content: center;
    color: var(--body_text_primary)
}

.currencies-card__header div.button {
    width: 120px
}

@media (min-width: 992px) {
    .currencies-card__header div.button {
        width: 20%
    }
}

.currencies-card__empty {
    width: 100%;
    height: 300px
}

.currencies-card__empty img {
    width: 80px
}

.currencies-card__list {
    width: 100%;
    height: calc(100% - 100px);
    overflow-y: scroll
}

@media (min-width: 834px) {
    .currencies-card__list {
        height: unset;
        overflow: unset
    }
}

.currencies-card__item {
    width: 100%;
    padding: 0 16px;
    margin-bottom: 8px
}

@media (min-width: 834px) {
    .currencies-card__item {
        margin-bottom: 12px;
        padding: 0 24px
    }
}

@media (min-width: 992px) {
    .currencies-card__item {
        font-size: 14px;
        padding: 0 40px;
        margin-bottom: 20px
    }
}

.currencies-card__item div.diff {
    text-align: right;
    width: 80px;
    cursor: pointer
}

.currencies-card__item div.diff span {
    padding: 5px 10px;
    border-radius: 5px;
    min-width: 100px;
    text-align: right
}

@media (min-width: 992px) {
    .currencies-card__item div.diff {
        width: 15%
    }
}

.currencies-card__item div.info {
    width: 40%;
    align-items: flex-start;
    color: var(--body_text_primary);
    cursor: pointer
}

@media (min-width: 834px) {
    .currencies-card__item div.info {
        width: calc(60% - 200px)
    }
}

@media (min-width: 992px) {
    .currencies-card__item div.info {
        width: 25%
    }
}

.currencies-card__item div.info img.image {
    width: 24px;
    height: 24px;
    margin-left: 8px
}

@media (min-width: 992px) {
    .currencies-card__item div.info img.image {
        width: 32px;
        height: 32px
    }
}

.currencies-card__item div.info img.star {
    width: 20px;
    margin-left: 4px;
    margin-right: -8px
}

.currencies-card__item div.info div span {
    direction: rtl
}

.currencies-card__item div.info div span.code {
    color: #666;
    line-height: 10px
}

.currencies-card__item div.price {
    direction: rtl;
    width: calc(60% - 80px);
    color: var(--body_text_primary);
    cursor: pointer
}

@media (min-width: 834px) {
    .currencies-card__item div.price {
        width: 20%
    }
}

.currencies-card__item div.market-chart {
    width: 20%;
    justify-content: center;
    cursor: pointer;
    color: var(--body_text_primary)
}

.currencies-card__item div.button {
    width: 120px
}

@media (min-width: 992px) {
    .currencies-card__item div.button {
        width: 20%;
        display: flex;
        justify-content: flex-end
    }
}

.currencies-card__item div.button .button1 {
    margin: 0
}

@media (min-width: 992px) {
    .currencies-card__item div.button .button1 {
        width: 120px
    }
}

.currencies-card__more {
    width: 100%;
    color: var(--body_text_accent);
    text-align: center;
    cursor: pointer;
    position: absolute;
    bottom: 10px;
    background-color: var(--surface_octonary);
    z-index: 21
}

@media (min-width: 834px) {
    .currencies-card__more {
        margin-top: 12px;
        position: relative;
        bottom: unset
    }
}

@media (min-width: 834px) {
    .currencies-card .currencies-card__item:hover {
        background-color: #4ef09d1a
    }
}

* {
    font-family: IranYekanX !important;
    box-sizing: border-box;
    position: relative;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    margin-block-start: 0px;
    margin-block-end: 0px;
    line-height: 25px
}

*:not(input) {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none
}

*:not(input) textarea {
    -webkit-user-select: text !important;
    user-select: text !important
}

body {
    margin: 0 !important;
    padding: 0 !important;
    direction: rtl;
    scrollbar-width: none;
    min-height: -webkit-fill-available;
    background-color: #1a1a1a
}

body.light {
    background-color: #e9e9e9
}

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

body ::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #f5f5f5
}

body ::-webkit-scrollbar {
    width: 2px;
    background-color: #f5f5f5
}

body ::-webkit-scrollbar-thumb {
    background-color: #666
}

body input:-webkit-autofill,
body input:-webkit-autofill:hover,
body input:-webkit-autofill:focus,
body input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s !important
}

@media (min-width: 834px) {
    .mobile {
        display: none !important
    }
}

@media (min-width: 992px) {
    .mobile-tablet {
        display: none !important
    }
}

.tablet-desktop {
    display: none !important
}

@media (min-width: 834px) {
    .tablet-desktop {
        display: flex !important
    }
}

.desktop {
    display: none !important
}

@media (min-width: 992px) {
    .desktop {
        display: flex !important
    }
}

.tablet {
    display: none !important
}

@media (min-width: 834px) {
    .tablet {
        display: flex !important
    }
}

@media (min-width: 992px) {
    .tablet {
        display: none !important
    }
}

::-webkit-scrollbar {
    display: none
}

.desktop-support-ic {
    position: fixed;
    z-index: 1000;
    bottom: 20px;
    cursor: pointer;
    right: 150px
}

.desktop-support-ticket {
    position: fixed;
    z-index: 1000;
    bottom: 20px;
    cursor: pointer;
    right: 10px
}

.input1 {
    width: 100%;
    margin-bottom: 16px
}

.input1__wrapper {
    width: 100%;
    height: 48px;
    background-color: #333;
    border-bottom: 1px solid #666;
    border-radius: 8px;
    transition-duration: .1s;
    padding: 0 12px;
    display: flex;
    flex-direction: row;
    align-items: center
}

.input1__wrapper.focus {
    border-bottom: 1px solid #4ef09d;
    transition-duration: .1s
}

.input1__wrapper.has-hint {
    margin-bottom: 48px
}

.input1__wrapper.error {
    border-bottom: 1px solid #ff5a5a;
    transition-duration: .1s
}

.input1__wrapper.disableInput {
    background-color: #222;
    border-color: #333
}

.input1__error {
    color: #ff5a5a;
    width: 100%;
    text-align: right;
    direction: rtl;
    margin-top: 4px
}

.input1__title {
    position: absolute;
    color: #666
}

.input1__title.focus {
    transition-duration: .1s;
    top: 0;
    color: #b2b2b2
}

.input1__title.disableContent {
    color: #333
}

.input1__bottom {
    align-items: flex-end !important;
    width: 100%;
    background: #33333380;
    border-radius: 0 0 8px 8px;
    height: 36px;
    position: absolute;
    top: 40px;
    right: 0;
    padding-right: 4px;
    cursor: pointer
}

.input1__bottom span.key {
    color: #b2b2b2
}

.input1__bottom span.val {
    color: #fff;
    margin-right: 4px
}

.input1 input {
    width: calc(100% - 24px);
    height: calc(100% - 15px);
    border: unset;
    outline: unset;
    background-color: transparent;
    padding: 0;
    color: #fff;
    position: absolute;
    bottom: 0
}

.input1 input.full-height {
    height: 100%
}

.input1 input:-webkit-autofill,
.input1 input:-webkit-autofill:hover,
.input1 input:-webkit-autofill:focus,
.input1 input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px transparent inset;
    -webkit-text-fill-color: #fff !important;
    background-clip: content-box !important;
    background-color: transparent !important
}

.input1.input:disable {
    opacity: 1
}

.input1-light {
    width: 100%;
    margin-bottom: 16px
}

.input1-light__wrapper {
    width: 100%;
    height: 48px;
    background-color: #fff;
    border-bottom: 1px solid #b2b2b2;
    border-radius: 8px;
    transition-duration: .1s;
    padding: 0 12px;
    display: flex;
    flex-direction: row;
    align-items: center
}

.input1-light__wrapper.focus {
    border-bottom: 1px solid #02a67f;
    transition-duration: .1s
}

.input1-light__wrapper.has-hint {
    margin-bottom: 48px
}

.input1-light__wrapper.error {
    border-bottom: 1px solid #ff5a5a;
    transition-duration: .1s
}

.input1-light__error {
    color: #ff5a5a;
    width: 100%;
    text-align: right;
    direction: rtl;
    margin-top: 4px
}

.input1-light__title {
    position: absolute;
    color: #b2b2b2
}

.input1-light__title.focus {
    transition-duration: .1s;
    top: 0;
    color: #666
}

.input1-light__bottom {
    align-items: flex-end !important;
    width: 100%;
    background: #d8d8d8;
    border-radius: 0 0 8px 8px;
    height: 36px;
    position: absolute;
    top: 40px;
    right: 0;
    padding-right: 4px;
    cursor: pointer
}

.input1-light__bottom span.key {
    color: #666
}

.input1-light__bottom span.val {
    color: #1a1a1a;
    margin-right: 4px
}

.input1-light input {
    width: calc(100% - 24px);
    height: calc(100% - 15px);
    border: unset;
    outline: unset;
    background-color: transparent;
    padding: 0;
    color: #1a1a1a;
    position: absolute;
    bottom: 0
}

.input1-light input.full-height {
    height: 100%
}

.input1-light input:-webkit-autofill,
.input1-light input:-webkit-autofill:hover,
.input1-light input:-webkit-autofill:focus,
.input1-light input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px transparent inset;
    -webkit-text-fill-color: #1a1a1a !important;
    background-clip: content-box !important;
    background-color: transparent !important
}

.input1-light.input:disable {
    opacity: 1
}

.input3 {
    --bg-box: rgba(51, 51, 51, .5019607843);
    --input-title: #666;
    width: 100%;
    border-radius: 8px;
    transition-duration: .1s;
    margin-bottom: 16px
}

.input3.light {
    --bg-box: #d8d8d8;
    --input-title: #1a1a1a
}

.input3__body {
    width: 100%;
    height: 48px;
    display: flex;
    flex-direction: row;
    align-items: center;
    z-index: 2;
    background-color: var(--surface_secondary);
    padding: 0 12px;
    border-radius: 8px;
    border-bottom: 1px solid var(--border_line_secondary)
}

.input3__body.focus {
    border-bottom: 1px solid #02a67f;
    transition-duration: .1s
}

.input3__body.error {
    border-bottom: 1px solid #ff5a5a;
    transition-duration: .1s
}

.input3__text {
    position: absolute;
    left: 12px;
    color: var(--body_text_primary)
}

.input3__text.isButton {
    color: var(--body_text_accent);
    cursor: pointer
}

.input3__title {
    position: absolute;
    color: var(--input-title)
}

.input3__title.focus {
    transition-duration: .1s;
    top: 4px;
    color: var(--body_text_secondary)
}

.input3__input {
    width: calc(100% - 52px);
    height: calc(100% - 15px);
    border: unset;
    outline: unset;
    background-color: transparent;
    padding: 0;
    color: var(--body_text_primary);
    position: absolute;
    bottom: 0
}

.input3__input.full-height {
    height: 100%
}

.input3__bottom {
    align-items: flex-end !important;
    width: 100%;
    background: var(--bg-box);
    border-radius: 0 0 8px 8px;
    height: 36px;
    margin-top: -8px;
    padding: 0 4px;
    cursor: pointer
}

.input3__bottom span.key {
    color: var(--body_text_secondary);
    font-size: 8px
}

@media (min-width: 834px) {
    .input3__bottom span.key {
        font-size: 10px
    }
}

.input3__bottom span.val {
    color: var(--body_text_primary);
    margin-right: 4px
}

.input3__error {
    color: #ff5a5a;
    width: 100%;
    text-align: right;
    direction: rtl;
    position: absolute;
    bottom: -25px
}

.input3.input:disable {
    opacity: 1
}

.input3 input::placeholder {
    font-size: 12px !important
}

.input3 input:-webkit-autofill,
.input3 input:-webkit-autofill:hover,
.input3 input:-webkit-autofill:focus,
.input3 input:-webkit-autofill:active {
    -webkit-text-fill-color: #fff !important;
    background-clip: content-box !important;
    background-color: transparent !important
}

.input4 {
    width: 100%;
    height: 48px;
    background-color: var(--surface_secondary);
    border-bottom: 1px solid var(--border_line_secondary);
    border-radius: 8px;
    transition-duration: .1s;
    padding: 0 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 15px
}

.input4.focus {
    border-bottom: 1px solid var(--border_line_primary);
    transition-duration: .1s
}

.input4__icon {
    position: absolute;
    right: 12px
}

.input4__close {
    position: absolute;
    left: 12px;
    cursor: pointer;
    background-color: unset;
    border: unset;
    outline: unset;
    width: 24px;
    height: 24px
}

.input4__title {
    position: absolute;
    color: var(--border_line_secondary);
    right: 36px
}

.input4__title.focus {
    transition-duration: .1s;
    top: 0;
    color: var(--body_text_secondary)
}

.input4__input {
    width: calc(100% - 72px);
    height: calc(100% - 15px);
    border: unset;
    outline: unset;
    background-color: transparent;
    padding: 0;
    right: 36px;
    color: var(--body_text_primary);
    position: absolute;
    bottom: 0
}

.input5 {
    width: 100%;
    margin-bottom: 15px
}

.input5__wrapper {
    height: 48px;
    background-color: #333;
    border-bottom: 1px solid #666;
    border-radius: 8px;
    transition-duration: .1s;
    padding: 0 12px;
    display: flex;
    flex-direction: row;
    align-items: center
}

.input5__wrapper.focus {
    border-bottom: 1px solid #4ef09d;
    transition-duration: .1s
}

.input5__wrapper.error {
    border-bottom: 1px solid #ff5a5a;
    transition-duration: .1s
}

.input5__error {
    color: #ff5a5a;
    width: 100%;
    text-align: right;
    direction: rtl;
    margin-top: 4px
}

.input5__icon {
    position: absolute;
    left: 12px;
    max-width: 24px
}

.input5__title {
    position: absolute;
    color: #666
}

.input5__title.focus {
    transition-duration: .1s;
    top: 4px;
    color: #b2b2b2
}

.input5__input {
    width: calc(100% - 24px);
    height: calc(100% - 15px);
    border: unset;
    outline: unset;
    background-color: transparent;
    padding: 0;
    color: #fff;
    position: absolute;
    bottom: 0
}

.input5__input.has-ic {
    width: calc(100% - 48px)
}

.input5__input.full-height {
    height: 100%
}

.input5.input:disable {
    opacity: 1
}

.input5 input:-webkit-autofill,
.input5 input:-webkit-autofill:hover,
.input5 input:-webkit-autofill:focus,
.input5 input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #333 inset;
    -webkit-text-fill-color: #fff !important;
    background-clip: content-box !important;
    background-color: transparent !important
}

.input5-light {
    width: 100%;
    margin-bottom: 15px
}

.input5-light__wrapper {
    width: 100%;
    height: 48px;
    background-color: #fff;
    border-radius: 8px;
    transition-duration: .1s;
    padding: 0 12px;
    display: flex;
    flex-direction: row;
    align-items: center
}

.input5-light__wrapper.focus {
    border-bottom: 1px solid #02a67f;
    transition-duration: .1s
}

.input5-light__wrapper.error {
    border-bottom: 1px solid #ff5a5a;
    transition-duration: .1s
}

.input5-light__error {
    color: #ff5a5a;
    width: 100%;
    text-align: right;
    direction: rtl;
    margin-top: 4px
}

.input5-light__icon {
    position: absolute;
    left: 12px;
    max-width: 24px
}

.input5-light__title {
    position: absolute;
    color: #1a1a1a
}

.input5-light__title.focus {
    transition-duration: .1s;
    top: 4px;
    color: #666
}

.input5-light__input {
    width: calc(100% - 24px);
    height: calc(100% - 15px);
    border: unset;
    outline: unset;
    background-color: transparent;
    padding: 0;
    color: #1a1a1a;
    position: absolute;
    bottom: 0
}

.input5-light__input.has-ic {
    width: calc(100% - 48px)
}

.input5-light__input.full-height {
    height: 100%
}

.input5-light.input:disable {
    opacity: 1
}

.input5-light input:-webkit-autofill,
.input5-light input:-webkit-autofill:hover,
.input5-light input:-webkit-autofill:focus,
.input5-light input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #fff inset;
    -webkit-text-fill-color: #1a1a1a !important;
    background-clip: content-box !important;
    background-color: transparent !important
}

.input6 {
    width: 100%;
    margin-bottom: 15px
}

.input6__wrapper {
    width: 100%;
    height: 48px;
    background-color: #333;
    border-bottom: 1px solid #666;
    border-radius: 8px;
    transition-duration: .1s;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0 12px
}

.input6__wrapper.focus {
    border-bottom: 1px solid #4ef09d;
    transition-duration: .1s
}

.input6__wrapper.error {
    border-bottom: 1px solid #ff5a5a;
    transition-duration: .1s
}

.input6__error {
    color: #ff5a5a;
    width: 100%;
    text-align: right;
    direction: rtl;
    margin-top: 4px
}

.input6__icon {
    position: absolute;
    left: 12px;
    cursor: pointer;
    max-width: 24px;
    background-color: unset;
    border: unset;
    outline: unset;
    width: 24px;
    height: 24px
}

.input6__icon2 {
    position: absolute;
    left: 48px;
    cursor: pointer;
    max-width: 24px;
    background-color: unset;
    border: unset;
    outline: unset;
    width: 24px;
    height: 24px
}

.input6__icon3 {
    position: absolute;
    left: 84px;
    cursor: pointer;
    max-width: 24px;
    background-color: unset;
    border: unset;
    outline: unset;
    width: 24px;
    height: 24px
}

.input6__title {
    position: absolute;
    color: #666
}

.input6__title.hide {
    display: none
}

.input6__title.focus {
    transition-duration: .1s;
    top: 0;
    color: #b2b2b2
}

.input6__input {
    width: calc(100% - 24px);
    height: calc(100% - 15px);
    border: unset;
    outline: unset;
    text-align: right;
    background-color: transparent;
    padding: 0;
    color: #fff;
    position: absolute;
    bottom: 0
}

.input6__input.has-1ic {
    width: calc(100% - 48px)
}

.input6__input.has-2ic {
    width: calc(100% - 96px)
}

.input6__input.has-3ic {
    width: calc(100% - 132px)
}

.input6__input.disable {
    color: #666
}

.input6__input.full-height {
    height: 100%
}

.input6.input:disable {
    opacity: 1;
    color: #666
}

.input6 input:-webkit-autofill,
.input6 input:-webkit-autofill:hover,
.input6 input:-webkit-autofill:focus,
.input6 input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px transparent inset;
    -webkit-text-fill-color: #fff !important;
    background-clip: content-box !important;
    background-color: transparent !important
}

.input6 input::-ms-reveal,
.input6 input::-ms-clear {
    display: none
}

.input6-light {
    width: 100%;
    margin-bottom: 15px
}

.input6-light__wrapper {
    width: 100%;
    height: 48px;
    background-color: #fff;
    border-bottom: 1px solid #b2b2b2;
    border-radius: 8px;
    transition-duration: .1s;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0 12px
}

.input6-light__wrapper.focus {
    border-bottom: 1px solid #02a67f;
    transition-duration: .1s
}

.input6-light__wrapper.error {
    border-bottom: 1px solid #ff5a5a;
    transition-duration: .1s
}

.input6-light__error {
    color: #ff5a5a;
    width: 100%;
    text-align: right;
    direction: rtl;
    margin-top: 4px
}

.input6-light__icon {
    position: absolute;
    left: 12px;
    cursor: pointer;
    max-width: 24px;
    background-color: unset;
    border: unset;
    outline: unset;
    width: 24px;
    height: 24px
}

.input6-light__icon2 {
    position: absolute;
    left: 48px;
    cursor: pointer;
    max-width: 24px;
    background-color: unset;
    border: unset;
    outline: unset;
    width: 24px;
    height: 24px
}

.input6-light__icon3 {
    position: absolute;
    left: 84px;
    cursor: pointer;
    max-width: 24px;
    background-color: unset;
    border: unset;
    outline: unset;
    width: 24px;
    height: 24px
}

.input6-light__title {
    position: absolute;
    color: #b2b2b2
}

.input6-light__title.hide {
    display: none
}

.input6-light__title.focus {
    transition-duration: .1s;
    top: 0;
    color: #666
}

.input6-light__input {
    width: calc(100% - 24px);
    height: calc(100% - 15px);
    border: unset;
    outline: unset;
    background-color: transparent;
    padding: 0;
    text-align: right;
    color: #1a1a1a;
    position: absolute;
    bottom: 0
}

.input6-light__input.has-1ic {
    width: calc(100% - 48px)
}

.input6-light__input.has-2ic {
    width: calc(100% - 96px)
}

.input6-light__input.has-3ic {
    width: calc(100% - 132px)
}

.input6-light__input.disable {
    color: #b2b2b2
}

.input6-light__input.full-height {
    height: 100%
}

.input6-light.input:disable {
    opacity: 1;
    color: #b2b2b2
}

.input6-light input:-webkit-autofill,
.input6-light input:-webkit-autofill:hover,
.input6-light input:-webkit-autofill:focus,
.input6-light input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px transparent inset;
    -webkit-text-fill-color: #1a1a1a !important;
    background-clip: content-box !important;
    background-color: transparent !important
}

.input6-light input::-ms-reveal,
.input6-light input::-ms-clear {
    display: none
}

.input7 {
    width: 100%;
    height: 150px;
    background-color: #333;
    border-bottom: 1px solid #666;
    border-radius: 8px;
    transition-duration: .1s;
    padding: 0 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 15px
}

.input7.focus {
    border-bottom: 1px solid #4ef09d;
    transition-duration: .1s
}

.input7__icon {
    position: absolute;
    left: 12px;
    cursor: pointer;
    top: 16px;
    background-color: unset;
    border: unset;
    outline: unset;
    width: 24px;
    height: 24px
}

.input7__title {
    position: absolute;
    color: #666;
    top: 16px
}

.input7__title.focus {
    transition-duration: .1s;
    top: 4px;
    color: #b2b2b2
}

.input7__input {
    width: calc(100% - 24px);
    height: calc(100% - 44px);
    border: unset;
    outline: unset;
    background-color: transparent;
    padding: 0;
    color: #fff;
    position: absolute;
    bottom: 12px;
    resize: none
}

.input7__input.has-ic {
    width: calc(100% - 48px)
}

.input7.input:disable {
    opacity: 1
}

.input7 input:-webkit-autofill,
.input7 input:-webkit-autofill:hover,
.input7 input:-webkit-autofill:focus,
.input7 input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #333 inset;
    -webkit-text-fill-color: #fff !important;
    background-clip: content-box !important;
    background-color: transparent !important
}

.input7-light {
    width: 100%;
    height: 150px;
    background-color: #fff;
    border-bottom: 1px solid #b2b2b2;
    border-radius: 8px;
    transition-duration: .1s;
    padding: 0 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 15px
}

.input7-light.focus {
    border-bottom: 1px solid #02a67f;
    transition-duration: .1s
}

.input7-light__icon {
    position: absolute;
    left: 12px;
    cursor: pointer;
    top: 16px
}

.input7-light__title {
    position: absolute;
    color: #b2b2b2;
    top: 16px
}

.input7-light__title.focus {
    transition-duration: .1s;
    top: 4px
}

.input7-light__input {
    width: calc(100% - 24px);
    height: calc(100% - 44px);
    border: unset;
    outline: unset;
    background-color: transparent;
    padding: 0;
    color: #1a1a1a;
    position: absolute;
    bottom: 12px;
    resize: none
}

.input7-light__input.has-ic {
    width: calc(100% - 48px)
}

.input7-light.input:disable {
    opacity: 1
}

.input7-light input:-webkit-autofill,
.input7-light input:-webkit-autofill:hover,
.input7-light input:-webkit-autofill:focus,
.input7-light input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #fff inset;
    -webkit-text-fill-color: #1a1a1a !important;
    background-clip: content-box !important;
    background-color: transparent !important
}

.input8 {
    width: 100%;
    height: 32px;
    background-color: unset;
    margin: 16px 0
}

.input8__body {
    width: 150px;
    height: 100%
}

@media (min-width: 992px) {
    .input8__body {
        width: 170px
    }
}

.input8__text {
    color: #fff
}

@media (min-width: 992px) {
    .input8__text {
        font-size: 16px
    }
}

.input8__title {
    position: absolute;
    color: #666;
    top: 4px
}

.input8__title.focus {
    transition-duration: .1s;
    display: none
}

.input8__input {
    width: 100%;
    height: 100%;
    border: unset;
    outline: unset;
    background-color: transparent;
    padding: 0 0 4px;
    border-bottom: 1px solid #fff;
    color: #fff;
    text-align: center;
    direction: ltr;
    resize: none
}

.input8__input.has-txt {
    width: calc(100% - 44px)
}

@media (min-width: 992px) {
    .input8__input {
        font-size: 20px
    }
}

.input8__input.focus {
    transition-duration: .1s
}

.input8.input:disable {
    opacity: 1
}

.input8 input:-webkit-autofill,
.input8 input:-webkit-autofill:hover,
.input8 input:-webkit-autofill:focus,
.input8 input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #333 inset;
    -webkit-text-fill-color: #fff !important;
    background-clip: content-box !important;
    background-color: transparent !important
}

.input8-light {
    width: 100%;
    height: 32px;
    background-color: unset;
    margin: 16px 0
}

.input8-light__body {
    width: 150px;
    height: 100%
}

@media (min-width: 992px) {
    .input8-light__body {
        width: 170px
    }
}

.input8-light__text {
    color: #1a1a1a
}

@media (min-width: 992px) {
    .input8-light__text {
        font-size: 16px
    }
}

.input8-light__title {
    position: absolute;
    color: #666;
    top: 4px
}

.input8-light__title.focus {
    transition-duration: .1s;
    display: none
}

.input8-light__input {
    width: 100%;
    height: 100%;
    border: unset;
    outline: unset;
    background-color: transparent;
    padding: 0 0 4px;
    border-bottom: 1px solid #1a1a1a;
    color: #1a1a1a;
    text-align: center;
    direction: ltr;
    resize: none
}

.input8-light__input.has-txt {
    width: calc(100% - 44px)
}

@media (min-width: 992px) {
    .input8-light__input {
        font-size: 20px
    }
}

.input8-light__input.focus {
    transition-duration: .1s
}

.input8-light.input:disable {
    opacity: 1
}

.input8-light input:-webkit-autofill,
.input8-light input:-webkit-autofill:hover,
.input8-light input:-webkit-autofill:focus,
.input8-light input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px transparent inset;
    -webkit-text-fill-color: #1a1a1a !important;
    background-clip: content-box !important;
    background-color: transparent !important
}

.input9 {
    width: 100%;
    height: 48px;
    background-color: #333;
    border-bottom: 1px solid #666;
    border-radius: 8px;
    transition-duration: .1s;
    padding: 0 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 15px
}

.input9.focus {
    border-bottom: 1px solid #4ef09d;
    transition-duration: .1s
}

.input9.error {
    border-bottom: 1px solid #ff5a5a;
    transition-duration: .1s
}

.input9__btn {
    position: absolute;
    left: 12px;
    cursor: pointer;
    color: #d8d8d8
}

.input9__title {
    position: absolute;
    color: #666
}

.input9__title.hide {
    display: none
}

.input9__title.focus {
    transition-duration: .1s;
    top: 0;
    color: #b2b2b2
}

.input9__input {
    width: calc(100% - 24px);
    height: calc(100% - 15px);
    border: unset;
    outline: unset;
    text-align: right;
    background-color: transparent;
    padding: 0;
    color: #fff;
    position: absolute;
    bottom: 0
}

.input9__input.has-btn {
    width: calc(100% - 80px)
}

.input9__input.disable {
    color: #666
}

.input9__input.full-height {
    height: 100%
}

.input9.input:disable {
    opacity: 1;
    color: #666
}

.input9 input:-webkit-autofill,
.input9 input:-webkit-autofill:hover,
.input9 input:-webkit-autofill:focus,
.input9 input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px transparent inset;
    -webkit-text-fill-color: #fff !important;
    background-clip: content-box !important;
    background-color: transparent !important
}

.input9-light {
    width: 100%;
    height: 48px;
    background-color: #fff;
    border-bottom: 1px solid #b2b2b2;
    border-radius: 8px;
    transition-duration: .1s;
    padding: 0 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 15px
}

.input9-light.focus {
    border-bottom: 1px solid #02a67f;
    transition-duration: .1s
}

.input9-light.error {
    border-bottom: 1px solid #ff5a5a;
    transition-duration: .1s
}

.input9-light__btn {
    position: absolute;
    left: 12px;
    cursor: pointer;
    color: #666
}

.input9-light__title {
    position: absolute;
    color: #b2b2b2
}

.input9-light__title.hide {
    display: none
}

.input9-light__title.focus {
    transition-duration: .1s;
    top: 0;
    color: #666
}

.input9-light__input {
    width: calc(100% - 24px);
    height: calc(100% - 15px);
    border: unset;
    outline: unset;
    background-color: transparent;
    padding: 0;
    text-align: right;
    color: #1a1a1a;
    position: absolute;
    bottom: 0
}

.input9-light__input.has-btn {
    width: calc(100% - 80px)
}

.input9-light__input.disable {
    color: #b2b2b2
}

.input9-light__input.full-height {
    height: 100%
}

.input9-light.input:disable {
    opacity: 1;
    color: #b2b2b2
}

.input9-light input:-webkit-autofill,
.input9-light input:-webkit-autofill:hover,
.input9-light input:-webkit-autofill:focus,
.input9-light input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px transparent inset;
    -webkit-text-fill-color: #1a1a1a !important;
    background-clip: content-box !important;
    background-color: transparent !important
}

.input10 {
    width: 100%;
    margin-bottom: 16px
}

.input10__wrapper {
    direction: ltr;
    width: 100%
}

.input10__wrapper input {
    border: unset;
    outline: unset;
    box-sizing: border-box;
    width: 48px !important;
    height: 48px;
    background-color: #333;
    border-radius: 8px;
    outline: none;
    color: #fff;
    margin-left: 10px
}

.input10__wrapper input.first {
    margin-left: 0
}

.input10__wrapper input:focus {
    border-bottom: 1px solid #4ef09d
}

.input10__wrapper input.error {
    border: 1px solid #ff5a5a
}

.input10-light {
    width: 100%;
    margin-bottom: 16px
}

.input10-light__wrapper {
    direction: ltr;
    width: 100%
}

.input10-light__wrapper input {
    border: unset;
    outline: unset;
    box-sizing: border-box;
    width: 48px !important;
    height: 48px;
    background-color: #fff;
    border-radius: 8px;
    outline: none;
    color: #1a1a1a
}

.input10-light__wrapper input:focus {
    border-bottom: 1px solid #02a67f
}

.input10-light__wrapper input.error {
    border: 1px solid #ff5a5a
}

.header1 {
    width: 100%;
    height: 56px;
    background-color: #222;
    padding: 0 16px;
    position: fixed;
    top: 0;
    z-index: 100;
    right: 0
}

.header1 button {
    background-color: unset;
    outline: unset;
    border: unset;
    width: 24px;
    height: 24px;
    margin-right: 16px
}

.header1 h1 {
    color: #fff
}

.header1 img.logo {
    width: 110px
}

.header3 {
    width: 100%;
    height: 56px;
    background-color: #222;
    padding: 0 16px;
    position: fixed;
    top: 0;
    z-index: 100
}

.header3 h1 {
    color: #fff
}

.header3 button {
    background-color: unset;
    outline: unset;
    border: unset;
    width: 24px;
    margin-right: 16px;
    height: 24px
}

.header3 div img.arrow {
    margin-right: 4px;
    transition-duration: .1s
}

.header3 div img.arrow.enable {
    transform: rotate(180deg);
    transition-duration: .1s
}

.header3 div img.image {
    margin-left: 4px;
    width: 32px
}

.header4 {
    width: 100%;
    height: 56px;
    background-color: #222;
    padding: 0 16px;
    position: fixed;
    top: 0;
    z-index: 100
}

.header4 h1 {
    color: #fff
}

.header4 button {
    background-color: unset;
    outline: unset;
    border: unset;
    width: 24px;
    margin-right: 16px;
    height: 24px
}

.header4 div img.logo {
    width: 86px
}

.header4 div img.arrow {
    margin-right: 4px;
    transition-duration: .1s
}

.header4 div img.arrow.enable {
    transform: rotate(180deg);
    transition-duration: .1s
}

.header4 div img.image {
    margin-left: 4px;
    width: 32px
}

.header5 {
    width: 100%;
    height: 109px;
    background-color: #222;
    padding: 16px;
    position: fixed;
    top: 0;
    z-index: 100
}

.header5 h1 {
    color: #fff;
    width: 100%;
    text-align: right
}

.header5 div {
    width: 100%
}

.header5 button {
    background-color: unset;
    outline: unset;
    border: unset
}

.header6 {
    width: 100%;
    height: 56px;
    background-color: #222;
    padding: 0 16px;
    position: fixed;
    top: 0;
    z-index: 100
}

.header6 .left-button {
    display: flex;
    align-items: center;
    color: #02a67f
}

.header6 .left-button>span {
    margin-inline: 5px;
    font-weight: 700
}

.header6 .button3 {
    margin-top: 0;
    text-wrap: nowrap;
    color: #4ef09d !important
}

.header6 button {
    background-color: unset;
    outline: unset;
    border: unset
}

.header6 button.logo {
    height: 14px
}

.header6 button.logo img {
    width: 100px
}

.header6 button.menu {
    margin-left: 16px;
    width: 24px;
    height: 24px
}

.header6 button.asset {
    margin-right: 8px;
    width: 24px;
    height: 24px
}

.hamster-button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    text-decoration: none
}

.hamster-button {
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center
}

.hamster-button img {
    margin-left: 8px;
    height: 16px
}

.button1 {
    width: 100%;
    height: 48px;
    background-color: #4ef09d;
    border-radius: 8px;
    margin-top: 16px;
    outline: unset;
    border: unset;
    color: #1a1a1a;
    cursor: pointer;
    align-items: center;
    justify-content: center
}

.button1__icon {
    margin-left: 8px
}

.button1:disabled {
    background: var(--surface_senary) !important;
    color: #666;
    cursor: not-allowed
}

.button2 {
    width: 100%;
    height: 48px;
    border: 1px solid var(--body_text_primary);
    border-radius: 8px;
    margin-top: 16px;
    outline: unset;
    color: var(--body_text_primary);
    background-color: transparent;
    cursor: pointer
}

.button2__icon {
    margin-left: 8px
}

.button2:disabled {
    border: 1px solid var(--border_line_secondary);
    color: var(--text_on_disable_secondary);
    cursor: not-allowed
}

.button3 {
    width: 100%;
    height: 48px;
    background-color: #fff0;
    border-radius: 8px;
    margin-top: 16px;
    outline: unset;
    border: unset;
    color: var(--body_text_accent);
    cursor: pointer
}

.button3__icon {
    margin-left: 8px
}

.button3:disabled {
    background: #4ef09d0d;
    cursor: not-allowed;
    color: var(--text_on_disable_primary)
}

.button4 {
    width: 100%;
    height: 48px;
    background-color: #4ef09d;
    border-radius: 8px;
    margin-top: 16px;
    outline: unset;
    border: unset;
    color: #1a1a1a;
    cursor: pointer
}

.button4__icon {
    margin-left: 8px
}

.button4:disabled {
    background-color: var(--surface_senary);
    color: var(--text_on_disable_primary);
    cursor: not-allowed
}

.button5 {
    width: 100%;
    height: 48px;
    background-color: var(--helper_red);
    border-radius: 8px;
    margin-top: 16px;
    outline: unset;
    border: unset;
    color: #1a1a1a;
    cursor: pointer
}

.button5__icon {
    margin-left: 8px
}

.button5:disabled {
    background: #d8d8d8;
    color: var(--text_on_disable_primary);
    cursor: not-allowed
}

.button6 {
    width: 100%;
    height: 32px;
    border: 1px solid var(--body_text_secondary);
    border-radius: 8px;
    background-color: transparent;
    outline: unset;
    color: var(--body_text_secondary);
    cursor: pointer
}

.button6:disabled {
    background: #b2b2b2;
    color: #b2b2b2;
    cursor: not-allowed
}

.tick-button {
    cursor: pointer;
    align-items: flex-start;
    width: 100%
}

.tick-button button {
    width: 20px;
    height: 20px;
    outline: none;
    border: 1px solid #b2b2b2;
    border-radius: 50%;
    background-color: unset;
    margin-left: 8px;
    cursor: pointer
}

.tick-button button.square {
    border-radius: 8px
}

.tick-button button.selected {
    background-color: #4ef09d;
    border: unset
}

.tick-button p {
    width: calc(100% - 32px);
    color: var(--body_text_primary)
}

@media (min-width: 992px) {
    .tick-button p {
        font-size: 14px;
        font-weight: 500
    }
}

.switch1 {
    --btn-selected-bg: rgba(78, 240, 157, .1490196078);
    width: 128px;
    height: 40px;
    border: 1px solid #666;
    color: var(--body_text_primary);
    border-radius: 8px
}

.switch1.light {
    --btn-selected-bg: rgba(78, 240, 157, .3019607843)
}

.switch1 div {
    width: 50%;
    height: 100%;
    cursor: pointer
}

.switch1 div.right {
    border-radius: 0 8px 8px 0
}

.switch1 div.left {
    border-radius: 8px 0 0 8px;
    border-right: 1px solid #666
}

.switch1 div.selected {
    background-color: var(--btn-selected-bg)
}

.switch3 {
    width: 100%;
    border-bottom: 1px solid var(--border_line_secondary);
    margin-bottom: 16px
}

@media (min-width: 992px) {
    .switch3 {
        margin-bottom: 32px
    }
}

.switch3 :first-child {
    margin-right: 16px
}

.switch3 div {
    color: var(--body_text_secondary);
    margin-left: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid transparent
}

@media (min-width: 370px) {
    .switch3 div {
        margin-left: 32px
    }
}

@media (min-width: 992px) {
    .switch3 div {
        font-size: 14px;
        cursor: pointer
    }
}

.switch3 div.selected {
    border-bottom: 2px solid var(--border_line_primary);
    color: var(--body_text_primary)
}

.switch4 {
    width: 100%
}

.switch4 ::-webkit-scrollbar {
    height: 4px !important;
    display: block !important;
    background-color: transparent !important
}

.switch4 ::-webkit-scrollbar-track {
    -webkit-box-shadow: none !important;
    background: transparent !important
}

.switch4 ::-webkit-scrollbar-thumb {
    background-color: #666 !important;
    border-radius: 8px;
    width: 110px
}

.switch4__title {
    color: #fff;
    width: 100%;
    text-align: right
}

@media (min-width: 992px) {
    .switch4__title {
        font-size: 14px
    }
}

.switch4__list {
    width: 100%
}

.switch4__list div.wrapper1 {
    display: flex;
    flex-direction: row;
    overflow-y: hidden;
    overflow-x: auto
}

.switch4__list div.wrapper2 {
    direction: rtl
}

@media (min-width: 834px) {
    .switch4__list div .button2 {
        background-color: #222
    }
}

.switch4__list div button {
    min-width: 140px;
    margin: 8px 8px 12px
}

.switch4-light {
    width: 100%
}

.switch4-light ::-webkit-scrollbar {
    height: 4px !important;
    display: block !important;
    background-color: transparent !important
}

.switch4-light ::-webkit-scrollbar-track {
    -webkit-box-shadow: none !important;
    background-color: transparent !important
}

.switch4-light ::-webkit-scrollbar-thumb {
    background-color: #b2b2b2 !important;
    border-radius: 8px;
    width: 110px
}

.switch4-light__title {
    color: #1a1a1a;
    width: 100%;
    text-align: right
}

@media (min-width: 992px) {
    .switch4-light__title {
        font-size: 14px
    }
}

.switch4-light__list {
    width: 100%
}

.switch4-light__list div.wrapper1 {
    display: flex;
    flex-direction: row;
    overflow-y: hidden;
    overflow-x: auto
}

.switch4-light__list div.wrapper2 {
    direction: rtl
}

.switch4-light__list div .button2 {
    background-color: unset
}

.switch4-light__list div button {
    min-width: 140px;
    margin: 8px 8px 12px
}

.switch5 {
    width: 52px;
    height: 32px;
    background-color: #333;
    border-radius: 35px;
    padding: 4px;
    cursor: pointer
}

.switch5.enable {
    background-color: #4ef09d
}

.switch5 div {
    width: 24px;
    height: 24px;
    border-radius: 12px;
    background-color: #1a1a1a;
    left: 4px;
    transition-duration: .1s;
    position: absolute
}

.switch5 div.enable {
    background-color: #fff;
    left: 24px;
    transition-duration: .1s
}

.switch5-light {
    width: 52px;
    height: 32px;
    background-color: #b2b2b2;
    border-radius: 35px;
    padding: 4px;
    cursor: pointer
}

.switch5-light.enable {
    background-color: #4ef09d
}

.switch5-light div {
    width: 24px;
    height: 24px;
    border-radius: 12px;
    background-color: #fff;
    left: 4px;
    transition-duration: .1s;
    position: absolute
}

.switch5-light div.enable {
    left: 24px;
    transition-duration: .1s
}

.popup1 {
    width: 100vw;
    height: 100vh;
    background-color: #3a3a3ad1;
    position: fixed;
    top: 0;
    left: 0;
    padding: 16px;
    z-index: 100
}

@media (min-width: 834px) {
    .popup1 {
        padding: 0 30%
    }
}

@media (min-width: 992px) {
    .popup1 {
        padding: 0 38%
    }
}

.popup1__body {
    width: 100%;
    background-color: #1a1a1a;
    border-radius: 16px;
    padding: 16px 16px 24px
}

.popup1__body p.title {
    width: 100%;
    text-align: center;
    color: #fff;
    margin-top: 24px
}

.popup1__body p.subtitle {
    margin-top: 8px
}

.popup1__body div.buttons {
    width: 100%;
    margin-top: 24px
}

.popup1__body div.buttons button {
    width: 30%;
    margin: 0 8px
}

.popup1__body div.close {
    width: 100%
}

.popup1__body div.close img {
    cursor: pointer
}

.popup1-light {
    width: 100vw;
    height: 100vh;
    background-color: #1a1a1ab2;
    position: fixed;
    top: 0;
    left: 0;
    padding: 16px;
    z-index: 100
}

@media (min-width: 834px) {
    .popup1-light {
        padding: 0 30%
    }
}

@media (min-width: 992px) {
    .popup1-light {
        padding: 0 38%
    }
}

.popup1-light__body {
    width: 100%;
    background-color: #f2f2f2;
    border-radius: 16px;
    padding: 16px 16px 24px
}

.popup1-light__body p.title {
    width: 100%;
    text-align: center;
    color: #1a1a1a;
    margin-top: 24px
}

.popup1-light__body p.subtitle {
    margin-top: 8px
}

.popup1-light__body div.buttons {
    width: 100%;
    margin-top: 24px
}

.popup1-light__body div.buttons button {
    width: 30%;
    margin: 0 8px
}

.popup1-light__body div.buttons .button2 {
    background-color: unset
}

.popup1-light__body div.close {
    width: 100%
}

.popup1-light__body div.close img {
    cursor: pointer
}

.popup2 {
    width: 100vw;
    height: 100vh;
    background-color: #3a3a3ad1;
    position: fixed;
    top: 0;
    left: 0;
    padding: 16px;
    z-index: 100
}

@media (min-width: 834px) {
    .popup2 {
        padding: 0 30%
    }
}

@media (min-width: 992px) {
    .popup2 {
        padding: 0 38%
    }
}

.popup2__body {
    width: 100%;
    background-color: #1a1a1a;
    border-radius: 16px;
    padding: 16px 16px 24px
}

.popup2__body .tick-button {
    width: 100%;
    justify-content: flex-start
}

.popup2__body p.title {
    width: 100%;
    text-align: center;
    color: #fff;
    margin: 12px 0
}

@media (min-width: 834px) {
    .popup2__body p.title {
        font-size: 14px
    }
}

.popup2__body div.close {
    width: 100%
}

.popup2__body div.close img {
    cursor: pointer
}

.popup2-light {
    width: 100vw;
    height: 100vh;
    background-color: #1a1a1ab2;
    position: fixed;
    top: 0;
    left: 0;
    padding: 16px;
    z-index: 100
}

@media (min-width: 834px) {
    .popup2-light {
        padding: 0 30%
    }
}

@media (min-width: 992px) {
    .popup2-light {
        padding: 0 38%
    }
}

.popup2-light__body {
    width: 100%;
    background-color: #f2f2f2;
    border-radius: 16px;
    padding: 16px 16px 24px
}

.popup2-light__body .tick-button {
    width: 100%;
    justify-content: flex-start
}

.popup2-light__body p.title {
    width: 100%;
    text-align: center;
    color: #1a1a1a;
    margin: 12px 0
}

@media (min-width: 834px) {
    .popup2-light__body p.title {
        font-size: 14px
    }
}

.popup2-light__body div.close {
    width: 100%
}

.popup2-light__body div.close img {
    cursor: pointer
}

.popup4 {
    width: 100vw;
    height: 100vh;
    background-color: #3a3a3ad1;
    position: fixed;
    top: 0;
    left: 0;
    padding: 16px;
    z-index: 100
}

@media (min-width: 834px) {
    .popup4 {
        padding: 0 30%
    }
}

@media (min-width: 992px) {
    .popup4 {
        padding: 0 38%
    }
}

.popup4__body {
    width: 100%;
    background-color: #1a1a1a;
    border-radius: 16px;
    padding: 16px 16px 24px
}

.popup4__body img {
    max-width: 56px
}

.popup4__body p.title {
    width: 100%;
    text-align: center;
    color: #fff;
    margin-top: 24px
}

.popup4__body div.buttons {
    width: 100%;
    margin-top: 8px
}

.popup4__body div.buttons button {
    width: calc((100% - 16px)/2)
}

.popup4__body div.close {
    width: 100%
}

.popup4__body div.close img {
    cursor: pointer
}

.popup4-light {
    width: 100vw;
    height: 100vh;
    background-color: #1a1a1ab2;
    position: fixed;
    top: 0;
    left: 0;
    padding: 16px;
    z-index: 100
}

@media (min-width: 834px) {
    .popup4-light {
        padding: 0 30%
    }
}

@media (min-width: 992px) {
    .popup4-light {
        padding: 0 38%
    }
}

.popup4-light__body {
    width: 100%;
    background-color: #f2f2f2;
    border-radius: 16px;
    padding: 16px 16px 24px
}

.popup4-light__body img {
    max-width: 56px
}

.popup4-light__body p.title {
    width: 100%;
    text-align: center;
    color: #1a1a1a;
    margin-top: 24px
}

.popup4-light__body div.buttons {
    width: 100%;
    margin-top: 8px
}

.popup4-light__body div.buttons button {
    width: calc((100% - 16px)/2)
}

.popup4-light__body div.close {
    width: 100%
}

.popup4-light__body div.close img {
    cursor: pointer
}

.popup5 {
    width: 100vw;
    height: 100vh;
    background-color: var(--popup-bg-color);
    position: fixed;
    top: 0;
    left: 0;
    padding: 16px;
    z-index: 101
}

@media (min-width: 834px) {
    .popup5 {
        padding: 0 30%
    }
}

@media (min-width: 992px) {
    .popup5 {
        padding: 0 38%
    }
}

.popup5__body {
    width: 100%;
    background-color: var(--popup-body-bg-color);
    border-radius: 16px;
    padding: 16px 16px 24px
}

.popup5__body p.popup-title {
    width: 100%;
    text-align: center;
    color: var(--body_text_primary);
    margin-top: 24px
}

.popup5__body p.popup-subtitle {
    color: var(--body_text_primary);
    text-align: center;
    width: 100%;
    margin-top: 8px
}

.popup5__body div.buttons {
    width: 100%;
    margin-top: 8px
}

.popup5__body div.buttons button {
    width: calc((100% - 16px)/2)
}

.popup5__body div.buttons.single button,
.popup5__body div.close {
    width: 100%
}

.popup5__body div.close img {
    cursor: pointer
}

.popup7 {
    width: 100vw;
    height: 100vh;
    background-color: #3a3a3ad1;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 16px
}

@media (min-width: 834px) {
    .popup7 {
        padding: 0 30%
    }
}

@media (min-width: 992px) {
    .popup7 {
        padding: 0 38%
    }
}

.popup7__body {
    width: 100%;
    background-color: #1a1a1a;
    border-radius: 16px;
    padding: 16px 16px 24px
}

.popup7__body p.title {
    color: #fff;
    width: 100%;
    text-align: center;
    margin-bottom: 12px
}

@media (min-width: 992px) {
    .popup7__body p.title {
        font-size: 16px
    }
}

.popup7__body div.close {
    width: 100%
}

.popup7__body div.close img {
    cursor: pointer
}

.popup7__body img.image {
    margin-bottom: 24px
}

.popup7__title {
    width: 100%;
    margin: 8px 0;
    text-align: right;
    color: #fff
}

.popup7__inputs {
    width: 100%
}

.popup7__inputs div.item {
    width: 100%;
    margin-bottom: 16px
}

.popup7__inputs div.item .button1 {
    margin: 0 8px 0 0;
    width: 115px;
    padding: 0 8px
}

@media (min-width: 992px) {
    .popup7__inputs div.item .button1 {
        width: 220px
    }
}

.popup7__inputs div.item .input6 {
    margin: 0
}

.popup7-light {
    width: 100vw;
    height: 100vh;
    background-color: #1a1a1ab2;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 16px
}

@media (min-width: 834px) {
    .popup7-light {
        padding: 0 30%
    }
}

@media (min-width: 992px) {
    .popup7-light {
        padding: 0 38%
    }
}

.popup7-light__body {
    width: 100%;
    background-color: #f2f2f2;
    border-radius: 16px;
    padding: 16px 16px 24px
}

.popup7-light__body p.title {
    color: #1a1a1a;
    width: 100%;
    text-align: center;
    margin-bottom: 12px
}

@media (min-width: 992px) {
    .popup7-light__body p.title {
        font-size: 16px
    }
}

.popup7-light__body div.close {
    width: 100%
}

.popup7-light__body div.close img {
    cursor: pointer
}

.popup7-light__body img.image {
    margin-bottom: 24px
}

.popup7-light__title {
    width: 100%;
    margin: 8px 0;
    text-align: right;
    color: #1a1a1a
}

.popup7-light__inputs {
    width: 100%
}

.popup7-light__inputs div.item {
    width: 100%;
    margin-bottom: 16px
}

.popup7-light__inputs div.item .button1 {
    margin: 0 8px 0 0;
    width: 115px;
    padding: 0 8px
}

@media (min-width: 992px) {
    .popup7-light__inputs div.item .button1 {
        width: 220px
    }
}

.popup7-light__inputs div.item .input6-light {
    margin: 0
}

.markets-popup {
    width: 100vw;
    height: 100vh;
    background-color: #3a3a3ad1;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100
}

@media (min-width: 834px) {
    .markets-popup {
        padding: 0 30%;
        display: flex;
        align-items: center;
        justify-content: center
    }
}

@media (min-width: 992px) {
    .markets-popup {
        padding: 0 35%;
        height: 100vh;
        align-items: flex-start
    }
}

.markets-popup__body {
    width: 100%;
    background-color: #1a1a1a;
    padding-top: 56px;
    height: 100%
}

@media (min-width: 834px) {
    .markets-popup__body {
        height: 60%;
        padding-top: 0;
        border-radius: 16px
    }
}

@media (min-width: 992px) {
    .markets-popup__body {
        margin-top: 136px
    }
}

.markets-popup__wrapper {
    width: 100%;
    padding: 16px 0;
    height: 100%
}

.markets-popup__wrapper .input4 {
    width: calc(100% - 32px);
    margin: 0 16px
}

.markets-popup__close {
    width: 100%;
    margin-bottom: 8px;
    padding-left: 16px
}

.markets-popup__close img {
    cursor: pointer
}

.markets-popup__title {
    margin: 8px 0;
    color: #fff;
    text-align: right;
    width: 100%;
    padding: 0 16px
}

.markets-popup__list {
    width: 100%;
    height: calc(100% - 80px);
    overflow-y: scroll;
    padding-bottom: 120px;
    margin-top: 16px
}

@media (min-width: 834px) {
    .markets-popup__list {
        padding-bottom: 0;
        height: calc(100% - 88px)
    }
}

.markets-popup__list div.item {
    width: 100%;
    margin-top: 12px;
    cursor: pointer;
    border-bottom: 1px solid #333;
    padding: 0 16px 12px
}

@media (min-width: 834px) {
    .markets-popup__list div.item {
        border: unset;
        margin-top: 0;
        padding: 8px 16px
    }
}

@media (min-width: 834px) {
    .markets-popup__list div.item:hover {
        background-color: #4ef09d1a
    }
}

.markets-popup__list div span.title {
    color: #fff
}

@media (min-width: 834px) {
    .markets-popup__list div span.title {
        font-weight: 300300
    }
}

.markets-popup__list div span.code {
    color: #b2b2b2;
    line-height: 20px
}

.markets-popup__list div img {
    width: 32px;
    margin-left: 12px
}

@media (min-width: 834px) {
    .markets-popup__list div img {
        width: 24px
    }
}

.markets-popup-light {
    width: 100vw;
    height: 100vh;
    background-color: #1a1a1ab2;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100
}

@media (min-width: 834px) {
    .markets-popup-light {
        padding: 0 30%;
        display: flex;
        align-items: center;
        justify-content: center
    }
}

@media (min-width: 992px) {
    .markets-popup-light {
        padding: 0 35%;
        height: 100vh;
        align-items: flex-start
    }
}

.markets-popup-light__body {
    width: 100%;
    background-color: #f2f2f2;
    padding-top: 56px;
    height: 100%
}

@media (min-width: 834px) {
    .markets-popup-light__body {
        height: 60%;
        padding-top: 0;
        border-radius: 16px
    }
}

@media (min-width: 992px) {
    .markets-popup-light__body {
        margin-top: 136px
    }
}

.markets-popup-light__wrapper {
    width: 100%;
    padding: 16px 0;
    height: 100%
}

.markets-popup-light__wrapper .input4 {
    width: calc(100% - 32px);
    margin: 0 16px
}

.markets-popup-light__close {
    width: 100%;
    margin-bottom: 8px;
    padding-left: 16px
}

.markets-popup-light__close img {
    cursor: pointer
}

.markets-popup-light__title {
    margin: 8px 0;
    color: #1a1a1a;
    text-align: right;
    width: 100%;
    padding: 0 16px
}

.markets-popup-light__list {
    width: 100%;
    height: calc(100% - 80px);
    overflow-y: scroll;
    padding-bottom: 120px;
    margin-top: 16px
}

@media (min-width: 834px) {
    .markets-popup-light__list {
        padding-bottom: 0;
        height: calc(100% - 88px)
    }
}

.markets-popup-light__list div.item {
    width: 100%;
    margin-top: 12px;
    cursor: pointer;
    border-bottom: 1px solid #d8d8d8;
    padding: 0 16px 12px
}

@media (min-width: 834px) {
    .markets-popup-light__list div.item {
        border: unset;
        padding: 8px 16px
    }
}

@media (min-width: 834px) {
    .markets-popup-light__list div.item:hover {
        background-color: #4ef09d1a
    }
}

.markets-popup-light__list div span.title {
    color: #1a1a1a
}

@media (min-width: 834px) {
    .markets-popup-light__list div span.title {
        font-weight: 300300
    }
}

.markets-popup-light__list div span.code {
    color: #b2b2b2;
    line-height: 20px
}

.markets-popup-light__list div img {
    width: 32px;
    margin-left: 12px
}

@media (min-width: 834px) {
    .markets-popup-light__list div img {
        width: 24px
    }
}

.otp-verify-popup {
    width: 100%
}

.otp-verify-popup__item {
    width: 100%;
    margin-bottom: 16px
}

.otp-verify-popup__item .button1 {
    margin: 0 8px 0 0;
    width: 115px;
    padding: 0 8px
}

@media (min-width: 992px) {
    .otp-verify-popup__item .button1 {
        width: 220px
    }
}

.otp-verify-popup__item .input6 {
    margin: 0
}

.rate-popup {
    width: 100vw;
    height: 100vh;
    background-color: #3a3a3ad1;
    position: fixed;
    top: 0;
    left: 0;
    padding: 16px;
    z-index: 100
}

@media (min-width: 834px) {
    .rate-popup {
        padding: 0 30%
    }
}

@media (min-width: 992px) {
    .rate-popup {
        padding: 0 38%
    }
}

.rate-popup__body {
    width: 100%;
    background-color: #1a1a1a;
    border-radius: 16px;
    padding: 16px 16px 24px
}

.rate-popup__close {
    width: 100%;
    background: none;
    border: none
}

.rate-popup__close img {
    cursor: pointer
}

.rate-popup__nok {
    width: 100%
}

.rate-popup__nok .button1 {
    margin-top: 0
}

.rate-popup__title2 {
    width: 100%;
    color: #fff;
    text-align: right;
    margin-bottom: 12px
}

.rate-popup__title {
    width: 100%;
    color: #fff;
    text-align: center
}

.rate-popup__image {
    width: 64px;
    margin-top: 32px;
    background: none;
    border: none
}

.rate-popup__btns {
    margin-top: 48px;
    width: 100%
}

.rate-popup__btns .button1,
.rate-popup__btns .button2 {
    width: calc((100% - 16px)/2)
}

.rate-popup-light {
    width: 100vw;
    height: 100vh;
    background-color: #3a3a3ad1;
    position: fixed;
    top: 0;
    left: 0;
    padding: 16px;
    z-index: 100
}

@media (min-width: 834px) {
    .rate-popup-light {
        padding: 0 30%
    }
}

@media (min-width: 992px) {
    .rate-popup-light {
        padding: 0 38%
    }
}

.rate-popup-light__body {
    width: 100%;
    background-color: #fff;
    border-radius: 16px;
    padding: 16px 16px 24px
}

.rate-popup-light__close {
    width: 100%;
    background: none;
    border: none
}

.rate-popup-light__close img {
    cursor: pointer
}

.rate-popup-light__nok {
    width: 100%
}

.rate-popup-light__nok .button1 {
    margin-top: 0
}

.rate-popup-light__title2 {
    width: 100%;
    color: #666;
    text-align: right;
    margin-bottom: 12px
}

.rate-popup-light__title {
    width: 100%;
    color: #1a1a1a;
    text-align: center
}

.rate-popup-light__image {
    width: 64px;
    margin-top: 32px;
    background: none;
    border: none
}

.rate-popup-light__btns {
    margin-top: 48px;
    width: 100%
}

.rate-popup-light__btns button {
    width: calc((100% - 16px)/2)
}

.hamster-video-popup {
    width: 100vw;
    height: 100vh;
    background-color: var(--popup-bg-color);
    position: fixed;
    top: 0;
    left: 0;
    padding: 16px;
    z-index: 100
}

@media (min-width: 834px) {
    .hamster-video-popup {
        padding: 0 8%
    }
}

@media (min-width: 992px) {
    .hamster-video-popup {
        padding: 0 12%
    }
}

.hamster-video-popup__body {
    padding: 60px 12px 12px;
    width: 100%;
    background-color: var(--surface_nonary);
    border-radius: 16px;
    position: relative
}

@media (min-width: 834px) {
    .hamster-video-popup__body {
        height: 700px;
        padding: 100px 48px 48px;
        width: 600px
    }
}

.hamster-video-popup__body .close {
    position: absolute;
    left: 12px;
    top: 12px
}

@media (min-width: 834px) {
    .hamster-video-popup__body .close {
        left: 24px;
        top: 24px
    }
}

.hamster-video-popup__body .close img {
    cursor: pointer
}

.hamster-video-popup__body__video {
    width: 100%;
    height: 60vh;
    border-radius: 16px;
    background-color: var(--body_text_quaternaryt);
    cursor: pointer
}

@media (min-width: 834px) {
    .hamster-video-popup__body__video {
        width: 100%;
        height: 100%
    }
}

.hamster-video-popup__body__play {
    position: absolute;
    top: 50%;
    left: calc(50% - 20px)
}

.navigation1 {
    width: 100%;
    height: 68px;
    background-color: #222;
    border-radius: 16px 16px 0 0;
    position: fixed;
    bottom: 0;
    z-index: 99
}

.navigation1.pwa {
    height: 80px;
    padding-bottom: 12px
}

.navigation1 .icon {
    width: 24px;
    filter: grayscale(1) opacity(.5)
}

.navigation1 .icon.active {
    filter: none
}

.navigation1 div {
    color: #d8d8d8;
    height: 100%;
    width: 20%
}

.navigation1 div.selected {
    color: #4ef09d
}

.navigation1 p {
    margin-top: 2px
}

.element1 {
    z-index: 20;
    text-align: center;
    color: #1a1a1a;
    border-radius: 8px;
    height: 25px;
    width: 80px;
    direction: ltr;
    background-color: #666
}

.element1.positive {
    background-color: #4ef09d
}

.element1.negative {
    background-color: #ff5a5a
}

@media (min-width: 834px) {
    .element1 {
        background-color: unset;
        font-size: 14px;
        color: #fff;
        width: unset
    }

    .element1.positive {
        color: #4ef09d;
        background-color: unset
    }

    .element1.negative {
        color: #ff5a5a;
        background-color: unset
    }
}

.element1-light {
    z-index: 20;
    text-align: center;
    color: #1a1a1a;
    border-radius: 8px;
    height: 25px;
    width: 80px;
    direction: ltr;
    background-color: #666
}

.element1-light.positive {
    background-color: #4ef09d
}

.element1-light.negative {
    background-color: #ff5a5a
}

@media (min-width: 834px) {
    .element1-light {
        background-color: unset;
        font-size: 14px;
        color: #1a1a1a;
        width: unset
    }

    .element1-light.positive {
        color: #02a67f;
        background-color: unset
    }

    .element1-light.negative {
        color: #ff5a5a;
        background-color: unset
    }
}

.element3 {
    width: 100%;
    align-items: flex-start !important
}

.element3 div {
    color: #fff;
    width: calc(100% - 12px);
    text-align: justify
}

.element3 span.circle {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background-color: #e7c400;
    margin-top: 8px
}

.element3-light {
    width: 100%;
    align-items: flex-start !important
}

.element3-light div {
    color: #1a1a1a;
    width: calc(100% - 12px);
    text-align: justify
}

.element3-light span.circle {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background-color: #e7c400;
    margin-top: 8px
}

.element4 {
    width: 100%;
    border-radius: 16px;
    background-color: #222;
    padding: 16px;
    color: #fff
}

@media (min-width: 834px) {
    .element4 {
        height: 270px;
        width: calc(50% - 16px)
    }
}

@media (min-width: 992px) {
    .element4 {
        width: calc((100% - 64px) / 3)
    }
}

.element4 span {
    margin-bottom: 24px
}

.element4 img.image,
.element4 .card-icon {
    margin-bottom: 16px
}

.element4 div.bsrc {
    width: 100%;
    height: 100%;
    align-items: flex-end
}

.element4 p {
    text-align: justify
}

@media (min-width: 992px) {
    .element4 p {
        font-size: 14px
    }
}

.element4-light {
    width: 100%;
    border-radius: 16px;
    background-color: #fff;
    padding: 16px;
    color: #1a1a1a
}

@media (min-width: 834px) {
    .element4-light {
        height: 270px;
        width: calc(50% - 16px)
    }
}

@media (min-width: 992px) {
    .element4-light {
        width: calc((100% - 64px) / 3)
    }
}

.element4-light span {
    margin-bottom: 24px
}

.element4-light img.image,
.element4-light .card-icon {
    margin-bottom: 16px
}

.element4-light div.bsrc {
    width: 100%;
    height: 100%;
    align-items: flex-end
}

.element4-light p {
    text-align: justify
}

@media (min-width: 992px) {
    .element4-light p {
        font-size: 14px
    }
}

.element5 {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid #b2b2b2
}

.sell_range {
    position: relative;
    width: 100%;
    height: 30px;
    margin-bottom: 16px
}

@media (min-width: 834px) {
    .sell_range {
        margin-bottom: 4px
    }
}

.sell_range .thumb_range::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: 1px solid #666;
    border-radius: 20px;
    height: 13px;
    width: 13px;
    background: #ff5a5a;
    cursor: pointer;
    margin: -3px 0 0
}

.sell_range .thumb_range-day::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: 1px solid #666;
    border-radius: 20px;
    height: 13px;
    width: 13px;
    background: #ff5a5a;
    cursor: pointer;
    margin: -3px 0 0
}

.sell_range .track_range_dark::-webkit-slider-thumb {
    -webkit-appearance: none;
    background: transparent;
    height: 1px;
    width: 1px;
    box-shadow: -3000px 0 0 3000px #ff5a5a
}

.sell_range .track_range_light::-webkit-slider-thumb {
    -webkit-appearance: none;
    background: transparent;
    height: 1px;
    width: 1px;
    box-shadow: -3000px 0 0 3000px #ff5a5a
}

.sell_range .bubble {
    background: #ff5a5a;
    color: #1a1a1a;
    padding: 4px 5px;
    position: absolute;
    border-radius: 4px;
    left: 50%;
    transform: translate(-50%);
    margin-top: 15px;
    z-index: 2
}

.sell_range .bubble:after {
    content: "";
    position: absolute;
    width: 2px;
    height: 2px;
    background: #ff5a5a;
    top: -1px;
    left: 50%;
    z-index: 2
}

.sell_range output {
    position: absolute;
    left: 50px;
    background: #666;
    padding-left: 5px;
    color: #fff;
    margin-top: 5px
}

.sell_range input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    direction: ltr;
    cursor: pointer
}

.sell_range input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none
}

.sell_range input[type=range]:focus {
    outline: none
}

.sell_range input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 5px
}

.sell_range .track_range_dark,
.sell_range .track_range_light {
    pointer-events: none
}

.sell_range .track_range_dark::-webkit-slider-runnable-track {
    background: #666;
    border-radius: 6px;
    overflow: hidden
}

.sell_range .track_range_light::-webkit-slider-runnable-track {
    border-radius: 6px;
    overflow: hidden;
    background: #e6e8ea
}

.sell_range .inner-circle {
    display: inline-block;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    border: 2px solid #666;
    background-color: #1a1a1a;
    position: absolute;
    top: -3px;
    left: 0;
    z-index: 0;
    cursor: pointer
}

.sell_range .inner-circle.light-theme,
.sell_range body.inner-circle.light {
    background-color: #e6e8ea
}

.sell_range .main-staick-bubblue,
.sell_range .full-value,
.sell_range .three-quarter,
.sell_range .half-value,
.sell_range .one-quarter,
.sell_range .zero-value {
    position: absolute;
    top: 15px;
    z-index: 1;
    color: #fff
}

.sell_range .zero-value {
    left: 0
}

.sell_range .one-quarter {
    left: calc(25% - 8px)
}

.sell_range .half-value {
    left: calc(50% - 8px)
}

.sell_range .three-quarter {
    left: calc(74% - 8px)
}

.sell_range .full-value {
    right: -4px
}

.sell_range-light {
    position: relative;
    width: 100%;
    height: 30px;
    margin-bottom: 16px
}

@media (min-width: 834px) {
    .sell_range-light {
        margin-bottom: 4px
    }
}

.sell_range-light .thumb_range::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: 1px solid #ff5a5a;
    border-radius: 20px;
    height: 13px;
    width: 13px;
    background: #ff5a5a;
    cursor: pointer;
    margin: -3px 0 0
}

.sell_range-light .thumb_range-day::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: 1px solid #b2b2b2;
    border-radius: 20px;
    height: 13px;
    width: 13px;
    background: #ff5a5a;
    cursor: pointer;
    margin: -3px 0 0
}

.sell_range-light .track_range_dark::-webkit-slider-thumb {
    -webkit-appearance: none;
    background: transparent;
    height: 1px;
    width: 1px;
    box-shadow: -3000px 0 0 3000px #ff5a5a
}

.sell_range-light .track_range_light::-webkit-slider-thumb {
    -webkit-appearance: none;
    background: transparent;
    height: 1px;
    width: 1px;
    box-shadow: -3000px 0 0 3000px #ff5a5a
}

.sell_range-light .bubble {
    background: #ff5a5a;
    color: #1a1a1a;
    padding: 4px 5px;
    position: absolute;
    border-radius: 4px;
    left: 50%;
    transform: translate(-50%);
    margin-top: 15px;
    z-index: 2
}

.sell_range-light .bubble:after {
    content: "";
    position: absolute;
    width: 2px;
    height: 2px;
    background: #ff5a5a;
    top: -1px;
    left: 50%;
    z-index: 2
}

.sell_range-light output {
    position: absolute;
    left: 50px;
    background: #666;
    padding-left: 5px;
    color: #fff;
    margin-top: 5px
}

.sell_range-light input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    direction: ltr;
    cursor: pointer
}

.sell_range-light input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none
}

.sell_range-light input[type=range]:focus {
    outline: none
}

.sell_range-light input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 5px
}

.sell_range-light .track_range_dark,
.sell_range-light .track_range_light {
    pointer-events: none
}

.sell_range-light .track_range_dark::-webkit-slider-runnable-track {
    background: #b2b2b2;
    border-radius: 6px;
    overflow: hidden
}

.sell_range-light .track_range_light::-webkit-slider-runnable-track {
    border-radius: 6px;
    overflow: hidden;
    background: #e6e8ea
}

.sell_range-light .inner-circle {
    display: inline-block;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    border: 2px solid #b2b2b2;
    background-color: #e9e9e9;
    position: absolute;
    top: -3px;
    left: 0;
    z-index: 0;
    cursor: pointer
}

.sell_range-light .inner-circle.light-theme,
.sell_range-light body.inner-circle.light {
    background-color: #e6e8ea
}

.sell_range-light .main-staick-bubblue,
.sell_range-light .full-value,
.sell_range-light .three-quarter,
.sell_range-light .half-value,
.sell_range-light .one-quarter,
.sell_range-light .zero-value {
    position: absolute;
    top: 15px;
    z-index: 1;
    color: #1a1a1a
}

.sell_range-light .zero-value {
    left: 0
}

.sell_range-light .one-quarter {
    left: calc(25% - 8px)
}

.sell_range-light .half-value {
    left: calc(50% - 8px)
}

.sell_range-light .three-quarter {
    left: calc(74% - 8px)
}

.sell_range-light .full-value {
    right: -4px
}

.buy_range {
    position: relative;
    width: 100%;
    height: 30px;
    margin-bottom: 16px
}

@media (min-width: 834px) {
    .buy_range {
        margin-bottom: 4px
    }
}

.buy_range .thumb_range::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: 1px solid #080c44;
    border-radius: 20px;
    height: 13px;
    width: 13px;
    background: #4ef09d;
    cursor: pointer;
    margin: -3px 0 0;
    z-index: 10
}

.buy_range .thumb_range-day::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: 1px solid #666;
    border-radius: 20px;
    height: 13px;
    width: 13px;
    background: #4ef09d;
    cursor: pointer;
    margin: -3px 0 0;
    z-index: 10
}

.buy_range .track_range_dark::-webkit-slider-thumb {
    -webkit-appearance: none;
    background: transparent;
    height: 1px;
    width: 1px;
    box-shadow: -3000px 0 0 3000px #4ef09d
}

.buy_range .track_range_light::-webkit-slider-thumb {
    -webkit-appearance: none;
    background: transparent;
    height: 1px;
    width: 1px;
    box-shadow: -3000px 0 0 3000px #4ef09d
}

.buy_range .bubble {
    background: #4ef09d;
    color: #1a1a1a;
    padding: 4px 5px;
    position: absolute;
    border-radius: 4px;
    left: 50%;
    transform: translate(-50%);
    margin-top: 15px;
    z-index: 2
}

.buy_range .bubble:after {
    content: "";
    position: absolute;
    width: 2px;
    height: 2px;
    background: #4ef09d;
    top: -1px;
    left: 50%;
    z-index: 2
}

.buy_range output {
    position: absolute;
    left: 50px;
    background: #00f;
    padding-left: 5px;
    color: #000;
    margin-top: 5px
}

.buy_range input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    direction: ltr;
    cursor: pointer
}

.buy_range input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none
}

.buy_range input[type=range]:focus {
    outline: none
}

.buy_range input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 5px
}

.buy_range .track_range_dark,
.buy_range .track_range_light {
    pointer-events: none
}

.buy_range .track_range_dark::-webkit-slider-runnable-track {
    background: #666;
    border-radius: 6px;
    overflow: hidden
}

.buy_range .track_range_light::-webkit-slider-runnable-track {
    border-radius: 6px;
    overflow: hidden;
    background: #e6e8ea
}

.buy_range .inner-circle {
    display: inline-block;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    border: 2px solid #666;
    background-color: #1a1a1a;
    position: absolute;
    top: -3px;
    left: 0;
    z-index: 0;
    cursor: pointer
}

.buy_range .inner-circle.light-theme,
.buy_range body.inner-circle.light {
    background-color: #e6e8ea
}

.buy_range .main-staick-bubblue,
.buy_range .full-value,
.buy_range .three-quarter,
.buy_range .half-value,
.buy_range .one-quarter,
.buy_range .zero-value {
    position: absolute;
    top: 15px;
    z-index: 1;
    color: #fff
}

.buy_range .zero-value {
    left: 0
}

.buy_range .one-quarter {
    left: calc(25% - 8px)
}

.buy_range .half-value {
    left: calc(50% - 8px)
}

.buy_range .three-quarter {
    left: calc(74% - 8px)
}

.buy_range .full-value {
    right: -4px
}

.buy_range-light {
    position: relative;
    width: 100%;
    height: 30px;
    margin-bottom: 16px
}

@media (min-width: 834px) {
    .buy_range-light {
        margin-bottom: 4px
    }
}

.buy_range-light .thumb_range::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: 1px solid #02a67f;
    border-radius: 20px;
    height: 13px;
    width: 13px;
    background: #02a67f;
    cursor: pointer;
    margin: -3px 0 0;
    z-index: 10
}

.buy_range-light .thumb_range-day::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: 1px solid #b2b2b2;
    border-radius: 20px;
    height: 13px;
    width: 13px;
    background: #4ef09d;
    cursor: pointer;
    margin: -3px 0 0;
    z-index: 10
}

.buy_range-light .track_range_dark::-webkit-slider-thumb {
    -webkit-appearance: none;
    background: transparent;
    height: 1px;
    width: 1px;
    box-shadow: -3000px 0 0 3000px #02a67f
}

.buy_range-light .track_range_light::-webkit-slider-thumb {
    -webkit-appearance: none;
    background: transparent;
    height: 1px;
    width: 1px;
    box-shadow: -3000px 0 0 3000px #02a67f
}

.buy_range-light .bubble {
    background: #02a67f;
    color: #1a1a1a;
    padding: 4px 5px;
    position: absolute;
    border-radius: 4px;
    left: 50%;
    transform: translate(-50%);
    margin-top: 15px;
    z-index: 2
}

.buy_range-light .bubble:after {
    content: "";
    position: absolute;
    width: 2px;
    height: 2px;
    background: #02a67f;
    top: -1px;
    left: 50%;
    z-index: 2
}

.buy_range-light output {
    position: absolute;
    left: 50px;
    background: #00f;
    padding-left: 5px;
    color: #000;
    margin-top: 5px
}

.buy_range-light input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    direction: ltr;
    cursor: pointer
}

.buy_range-light input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none
}

.buy_range-light input[type=range]:focus {
    outline: none
}

.buy_range-light input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 5px
}

.buy_range-light .track_range_dark,
.buy_range-light .track_range_light {
    pointer-events: none
}

.buy_range-light .track_range_dark::-webkit-slider-runnable-track {
    background: #b2b2b2;
    border-radius: 6px;
    overflow: hidden
}

.buy_range-light .track_range_light::-webkit-slider-runnable-track {
    border-radius: 6px;
    overflow: hidden;
    background: #e6e8ea
}

.buy_range-light .inner-circle {
    display: inline-block;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    border: 2px solid #b2b2b2;
    background-color: #e9e9e9;
    position: absolute;
    top: -3px;
    left: 0;
    z-index: 0;
    cursor: pointer
}

.buy_range-light .inner-circle.light-theme,
.buy_range-light body.inner-circle.light {
    background-color: #e6e8ea
}

.buy_range-light .main-staick-bubblue,
.buy_range-light .full-value,
.buy_range-light .three-quarter,
.buy_range-light .half-value,
.buy_range-light .one-quarter,
.buy_range-light .zero-value {
    position: absolute;
    top: 15px;
    z-index: 1;
    color: #1a1a1a
}

.buy_range-light .zero-value {
    left: 0
}

.buy_range-light .one-quarter {
    left: calc(25% - 8px)
}

.buy_range-light .half-value {
    left: calc(50% - 8px)
}

.buy_range-light .three-quarter {
    left: calc(74% - 8px)
}

.buy_range-light .full-value {
    right: -4px
}

.element7 {
    --text-answer: #f2f2f2;
    --bg: #222;
    width: 100%;
    padding: 16px;
    margin-top: 16px;
    cursor: pointer
}

.element7.light {
    --text-answer: #666;
    --bg: #fff
}

@media (min-width: 834px) {
    .element7 {
        padding: 0 8%
    }
}

@media (min-width: 992px) {
    .element7 {
        padding: 0 10%
    }
}

.element7__body {
    background-color: var(--bg);
    width: 100%;
    border-radius: 16px;
    padding-top: 16px;
    padding-bottom: 16px
}

@media (min-width: 834px) {
    .element7__body {
        padding: 32px 5%
    }
}

.element7__head {
    color: var(--body_text_primary);
    text-align: center;
    margin-bottom: 16px
}

@media (min-width: 834px) {
    .element7__head {
        text-align: right
    }
}

.element7__list {
    width: 100%
}

.element7__list div.row {
    width: 100%;
    padding: 16px;
    min-height: 48px;
    border-bottom: 1px solid var(--border_line_tertiary)
}

.element7__list div.row div {
    width: 100%
}

.element7__list div.row div h3 {
    color: var(--body_text_primary)
}

.element7__list div.row div img,
.element7__list div.row div svg {
    margin-left: 8px;
    width: 16px
}

.element7__list div.row p.answer {
    direction: rtl;
    text-align: right;
    width: 100%;
    color: var(--text-answer);
    padding-right: 24px;
    max-height: 1px;
    overflow: hidden;
    transition-duration: .3s
}

.element7__list div.row p.answer.show {
    max-height: 1000px;
    transition-duration: .5s;
    padding-top: 4px
}

.element8 {
    width: 100%;
    padding: 16px;
    margin-top: 16px
}

.element8__list {
    width: 100%
}

.element8__list div.row {
    width: 100%;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    margin-top: 8px;
    padding: 12px 0;
    min-height: 48px
}

.element8__list div.row div {
    width: 100%;
    cursor: pointer;
    color: #fff;
    align-items: flex-start
}

.element8__list div.row div img {
    cursor: pointer
}

.element8__list div.row div img.show {
    transform: rotate(180deg)
}

.element8__list div.row p.answer {
    direction: rtl;
    text-align: right;
    width: 100%;
    color: #e1e1e1;
    padding-right: 24px;
    max-height: 1px;
    overflow: hidden;
    transition-duration: .3s
}

.element8__list div.row p.answer.show {
    max-height: 1000px;
    transition-duration: .5s;
    padding-top: 4px
}

.element8-light {
    width: 100%;
    padding: 16px;
    margin-top: 16px
}

.element8-light__list {
    width: 100%
}

.element8-light__list div.row {
    width: 100%;
    border-top: 1px solid #b2b2b2;
    border-bottom: 1px solid #b2b2b2;
    margin-top: 8px;
    padding: 12px 0;
    min-height: 48px
}

.element8-light__list div.row div {
    width: 100%;
    cursor: pointer;
    color: #1a1a1a;
    align-items: flex-start
}

.element8-light__list div.row div img {
    cursor: pointer
}

.element8-light__list div.row div img.show {
    transform: rotate(180deg)
}

.element8-light__list div.row p.answer {
    direction: rtl;
    text-align: right;
    width: 100%;
    color: #666;
    padding-right: 24px;
    max-height: 1px;
    overflow: hidden;
    transition-duration: .3s
}

.element8-light__list div.row p.answer.show {
    max-height: 1000px;
    transition-duration: .5s;
    padding-top: 4px
}

.element11 {
    position: relative;
    width: 100%
}

.element11__range {
    width: 100%;
    color: #fff;
    margin-top: 8px
}

@media (min-width: 834px) {
    .element11__range {
        font-size: 14px
    }
}

.element11 .track_range {
    pointer-events: none
}

.element11 input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    direction: ltr;
    cursor: pointer
}

.element11 input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none
}

.element11 input[type=range]:focus {
    outline: none
}

.element11 .track_range::-webkit-slider-runnable-track {
    background: #333;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    height: 4px
}

.element11 .track_range::-moz-range-track {
    background: #333;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    height: 4px
}

.element11 .thumb_range::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: 1px solid #080c44;
    border-radius: 8px;
    height: 16px;
    width: 16px;
    background: #4ef09d;
    cursor: pointer;
    margin: -6px 0 0;
    z-index: 10
}

.element11 .thumb_range::-moz-range-thumb {
    -webkit-appearance: none;
    border: 1px solid #080c44;
    border-radius: 8px;
    height: 16px;
    width: 16px;
    background: #4ef09d;
    cursor: pointer;
    margin: -6px 0 0;
    z-index: 10
}

.element11 .track_range::-webkit-slider-thumb {
    -webkit-appearance: none;
    background: transparent;
    height: 1px;
    width: 1px;
    box-shadow: -3000px 0 0 3000px #4ef09d
}

.element11 .track_range::-moz-range-thumb {
    -webkit-appearance: none;
    background: transparent;
    height: 1px;
    width: 1px
}

.element11 .track_range::-moz-range-progress {
    background-color: #4ef09d
}

.element11 .track_range::-moz-range-track {
    background-color: #333
}

.element11 .track_range::-ms-fill-lower {
    background-color: #4ef09d
}

.element11 .track_range::-ms-fill-upper {
    background-color: #333
}

.element11-light {
    position: relative;
    width: 100%
}

.element11-light__range {
    width: 100%;
    color: #1a1a1a;
    margin-top: 8px
}

@media (min-width: 834px) {
    .element11-light__range {
        font-size: 14px
    }
}

.element11-light .track_range {
    pointer-events: none
}

.element11-light input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    direction: ltr;
    cursor: pointer
}

.element11-light input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none
}

.element11-light input[type=range]:focus {
    outline: none
}

.element11-light .track_range::-webkit-slider-runnable-track {
    background: #d8d8d8;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    height: 4px
}

.element11-light .track_range::-moz-range-track {
    background: #d8d8d8;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    height: 4px
}

.element11-light .thumb_range::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: 1px solid #02a67f;
    border-radius: 8px;
    height: 16px;
    width: 16px;
    background: #02a67f;
    cursor: pointer;
    margin: -6px 0 0;
    z-index: 10
}

.element11-light .thumb_range::-moz-range-thumb {
    -webkit-appearance: none;
    border: 1px solid #02a67f;
    border-radius: 8px;
    height: 16px;
    width: 16px;
    background: #02a67f;
    cursor: pointer;
    margin: -6px 0 0;
    z-index: 10
}

.element11-light .track_range::-webkit-slider-thumb {
    -webkit-appearance: none;
    background: transparent;
    height: 1px;
    width: 1px;
    box-shadow: -3000px 0 0 3000px #02a67f
}

.element11-light .track_range::-moz-range-thumb {
    -webkit-appearance: none;
    background: transparent;
    height: 1px;
    width: 1px
}

.element11-light .track_range::-moz-range-progress {
    background-color: #02a67f
}

.element11-light .track_range::-moz-range-track {
    background-color: #d8d8d8
}

.element11-light .track_range::-ms-fill-lower {
    background-color: #02a67f
}

.element11-light .track_range::-ms-fill-upper {
    background-color: #d8d8d8
}

.new-tag-element {
    height: 14px;
    padding: 0 2px;
    font-size: 10px !important;
    color: #fff;
    background-color: #02a67f;
    border-radius: 4px;
    position: absolute;
    left: -50%;
    top: -10px
}

.loading {
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: 1002;
    top: 0;
    left: 0;
    background-color: #222a
}

.loading img {
    width: 30%
}

@media (min-width: 834px) {
    .loading img {
        width: 20%
    }
}

.chart {
    width: 100%;
    height: 100%
}

.chart .element5 {
    border: unset;
    width: 100% !important;
    height: 100% !important
}

.tab1 {
    width: 100%
}

.tab1__header {
    width: 100%;
    margin-top: 16px;
    padding: 0 16px;
    border-bottom: 1px solid #666
}

@media (min-width: 834px) {
    .tab1__header {
        padding: 0;
        display: flex;
        align-items: center;
        flex-direction: row;
        justify-content: flex-start;
        margin: 0
    }
}

@media (min-width: 992px) {
    .tab1__header {
        font-size: 14px;
        width: 64%
    }
}

.tab1__header div {
    padding-bottom: 8px;
    color: #b2b2b2;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    text-align: center
}

.tab1__header div.selected {
    color: #fff;
    border-bottom: 2px solid #4ef09d
}

@media (min-width: 834px) {
    .tab1__header div {
        margin-left: 32px
    }
}

.tab1-light {
    width: 100%
}

.tab1-light__header {
    width: 100%;
    margin-top: 16px;
    padding: 0 16px;
    border-bottom: 1px solid #b2b2b2
}

@media (min-width: 834px) {
    .tab1-light__header {
        padding: 0;
        display: flex;
        align-items: center;
        flex-direction: row;
        justify-content: flex-start;
        margin: 0
    }
}

@media (min-width: 992px) {
    .tab1-light__header {
        font-size: 14px;
        width: 64%
    }
}

.tab1-light__header div {
    padding-bottom: 8px;
    color: #666;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    text-align: center
}

.tab1-light__header div.selected {
    color: #1a1a1a;
    border-bottom: 2px solid #02a67f
}

@media (min-width: 834px) {
    .tab1-light__header div {
        margin-left: 32px
    }
}

.table1 {
    width: 100%;
    background-color: #222;
    border-radius: 16px;
    padding: 16px 4px;
    margin-top: 12px;
    margin-bottom: 16px
}

.table1__row {
    width: 100%;
    color: #fff;
    border-bottom: 1px solid #333;
    padding: 12px 0
}

@media (min-width: 834px) {
    .table1__row {
        font-size: 12px
    }
}

@media (min-width: 992px) {
    .table1__row {
        font-size: 14px
    }
}

.table1__row.header {
    color: #d8d8d8;
    border-bottom: 1px solid #666;
    padding: 8px 0
}

.table1__row__field {
    flex: 1;
    text-align: center
}

.table1-light {
    width: 100%;
    background-color: #fff;
    border-radius: 16px;
    padding: 16px 4px;
    margin-top: 12px;
    margin-bottom: 16px
}

.table1-light__row {
    width: 100%;
    color: #1a1a1a;
    border-bottom: 1px solid #d8d8d8;
    padding: 12px 0
}

@media (min-width: 834px) {
    .table1-light__row {
        font-size: 12px
    }
}

@media (min-width: 992px) {
    .table1-light__row {
        font-size: 14px
    }
}

.table1-light__row.header {
    color: #333;
    border-bottom: 1px solid #b2b2b2;
    padding: 8px 0
}

.table1-light__row__field {
    flex: 1;
    text-align: center
}

.dropdown1 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 48px;
    width: 100%;
    z-index: 10
}

.dropdown1__body {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-radius: 8px;
    background-color: var(--surface_secondary);
    height: 100%;
    transition-duration: .2s;
    padding: 0;
    cursor: pointer;
    border-bottom: 1px solid var(--border_line_secondary)
}

@media (min-width: 992px) {
    .dropdown1__body {
        border-radius: 10px
    }
}

.dropdown1__body.filled {
    border-bottom: 1px solid var(--border_line_primary)
}

.dropdown1__body img.title-icon {
    width: 24px;
    margin-right: 10px
}

.dropdown1__body img.icon {
    margin-left: 10px
}

.dropdown1__body div {
    text-align: right
}

.dropdown1__body div.title {
    color: var(--body_text_primary);
    flex: 1;
    padding-right: 10px;
    display: flex;
    flex-direction: column;
    font-size: 12px;
    align-items: flex-start
}

.dropdown1__body div.title span.first {
    color: #666
}

.dropdown1__body div.title span.title {
    font-size: 10px
}

.dropdown1__body div.title div {
    margin-top: -4px
}

@media (min-width: 834px) {
    .dropdown1__body div.title {
        font-size: 14px
    }

    .dropdown1__body div.title span.title {
        font-size: 12px
    }
}

.dropdown1__body.open {
    transition-duration: .2s;
    border-bottom: 1px solid var(--border_line_primary);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.dropdown1__body.open img.icon {
    transform: rotate(180deg)
}

.dropdown1__list {
    width: 100%;
    position: absolute;
    top: 51px;
    right: 0;
    transition-duration: .2s;
    background-color: var(--surface_secondary);
    height: 0px;
    overflow-y: scroll;
    border-radius: 0 0 5px 5px
}

.dropdown1__list .input4 {
    width: calc(100% - 32px)
}

@media (min-width: 992px) {
    .dropdown1__list {
        top: 48px;
        border-radius: 0 0 10px 10px
    }
}

.dropdown1__list.open {
    height: 200px;
    transition-duration: .2s;
    overflow-y: hidden
}

@media (min-width: 834px) {
    .dropdown1__list.open {
        height: 230px
    }
}

.dropdown1__list.open div.inside {
    overflow-y: scroll;
    height: 200px
}

.dropdown1__list.open div.inside.withSearch {
    height: 148px
}

@media (min-width: 834px) {
    .dropdown1__list.open div.inside {
        height: 230px
    }

    .dropdown1__list.open div.inside.withSearch {
        height: 168px
    }
}

.dropdown1__list div.inside {
    width: 100%;
    height: 0px
}

.dropdown1__list div.item {
    cursor: pointer;
    width: 100%;
    height: 40px;
    padding: 5px 10px;
    color: var(--body_text_primary);
    text-align: right;
    background-color: var(--surface_secondary)
}

.dropdown1__list div.item span {
    text-align: right
}

.dropdown1__list div.item span.left-path,
.dropdown1__list div.item span.left-path2 {
    margin: 0 2px
}

.dropdown1__list div.item span.code {
    font-size: 10px;
    margin-left: 4px
}

.dropdown1__list div.item span.item-tag {
    margin-right: 8px;
    color: #e7c400;
    font-size: 10px
}

.dropdown1__list div.item img {
    margin-left: 10px;
    width: 24px
}

.dropdown1__list div.item:hover {
    background-color: #4ef09d1a
}

.dropdown1__list__children {
    padding: 0 16px;
    width: 100%
}

.dropdown1__list__children :only-child {
    width: 50%
}

.account-dropdown {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 100%;
    margin-bottom: 16px
}

@media (min-width: 834px) {
    .account-dropdown {
        height: 55px
    }
}

.account-dropdown__body {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-radius: 8px;
    border-bottom: 1px solid #4ef09d;
    background-color: #333;
    height: 100%;
    transition-duration: .2s;
    padding: 0;
    z-index: 10;
    cursor: pointer
}

@media (min-width: 992px) {
    .account-dropdown__body {
        border-radius: 10px
    }
}

.account-dropdown__body div {
    text-align: right
}

.account-dropdown__body div.title {
    color: #fff;
    flex: 1;
    padding-right: 10px;
    display: flex;
    flex-direction: column;
    font-size: 12px;
    align-items: flex-start
}

.account-dropdown__body div.title span.first {
    color: #b2b2b2
}

.account-dropdown__body div.title span.title {
    font-size: 10px
}

@media (min-width: 834px) {
    .account-dropdown__body div.title {
        font-size: 14px
    }

    .account-dropdown__body div.title span.title {
        font-size: 12px
    }
}

.account-dropdown__body.open {
    transition-duration: .2s;
    border-bottom: 1px solid #4ef09d;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.account-dropdown__body.open img.icon {
    transform: rotate(180deg)
}

.account-dropdown__body img {
    margin-left: 10px
}

.account-dropdown__list {
    width: 100%;
    position: absolute;
    top: 51px;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transition-duration: .2s;
    background-color: #333;
    height: 0px;
    z-index: 10;
    overflow-y: scroll;
    border-radius: 0 0 5px 5px
}

.account-dropdown__list .input4 {
    width: calc(100% - 32px)
}

@media (min-width: 992px) {
    .account-dropdown__list {
        top: 55px;
        border-radius: 0 0 10px 10px
    }
}

.account-dropdown__list.open {
    height: 200px;
    transition-duration: .2s;
    overflow-y: hidden
}

@media (min-width: 834px) {
    .account-dropdown__list.open {
        height: 230px
    }
}

.account-dropdown__list.open div.inside {
    overflow-y: scroll;
    height: 200px
}

@media (min-width: 834px) {
    .account-dropdown__list.open div.inside {
        height: 230px
    }
}

.account-dropdown__list div.inside {
    width: 100%;
    height: 0px
}

.account-dropdown__list div.item {
    cursor: pointer;
    width: 100%;
    height: 50px;
    padding: 10px;
    color: #fff;
    text-align: right;
    font-size: 14px;
    background-color: #333
}

.account-dropdown__list div.item div.bank-info img {
    width: 24px;
    margin-left: 4px
}

.account-dropdown__list div.item div.state {
    margin-right: 4px
}

.account-dropdown__list div.item span {
    text-align: right
}

.account-dropdown__list div.item span.code {
    font-size: 10px;
    margin-left: 4px
}

.account-dropdown__list div.item:hover {
    background-color: #4ef09d1a
}

.account-dropdown__list__children {
    padding: 0 16px;
    width: 100%
}

.account-dropdown__list__children :only-child {
    width: 50%
}

.account-dropdown__list__button {
    width: 100%;
    border-top: 1px solid #666;
    padding: 16px 0 40px;
    color: #4ef09d;
    cursor: pointer
}

.account-dropdown__list__button svg {
    margin-left: 8px
}

.account-dropdown-light {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 100%;
    margin-bottom: 16px
}

@media (min-width: 834px) {
    .account-dropdown-light {
        height: 55px
    }
}

.account-dropdown-light__body {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-radius: 8px;
    border-bottom: 1px solid #666;
    background-color: #fff;
    height: 100%;
    transition-duration: .2s;
    padding: 0;
    z-index: 10;
    cursor: pointer
}

.account-dropdown-light__body.filled {
    border-bottom: 1px solid #02a67f
}

@media (min-width: 992px) {
    .account-dropdown-light__body {
        border-radius: 10px
    }
}

.account-dropdown-light__body div {
    text-align: right
}

.account-dropdown-light__body div.title {
    color: #1a1a1a;
    flex: 1;
    padding-right: 10px;
    display: flex;
    flex-direction: column;
    font-size: 12px;
    align-items: flex-start
}

.account-dropdown-light__body div.title span.first {
    color: #666
}

.account-dropdown-light__body div.title span.title {
    font-size: 10px
}

@media (min-width: 834px) {
    .account-dropdown-light__body div.title {
        font-size: 14px
    }

    .account-dropdown-light__body div.title span.title {
        font-size: 12px
    }
}

.account-dropdown-light__body.open {
    transition-duration: .2s;
    border-bottom: 1px solid #02a67f;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.account-dropdown-light__body.open img.icon {
    transform: rotate(180deg)
}

.account-dropdown-light__body img {
    margin-left: 10px
}

.account-dropdown-light__list {
    width: 100%;
    position: absolute;
    top: 51px;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transition-duration: .2s;
    background-color: #fff;
    height: 0px;
    z-index: 10;
    overflow-y: scroll;
    border-radius: 0 0 5px 5px
}

.account-dropdown-light__list .input4 {
    width: calc(100% - 32px)
}

@media (min-width: 992px) {
    .account-dropdown-light__list {
        top: 55px;
        border-radius: 0 0 10px 10px
    }
}

.account-dropdown-light__list.open {
    height: 200px;
    transition-duration: .2s;
    overflow-y: hidden
}

@media (min-width: 834px) {
    .account-dropdown-light__list.open {
        height: 230px
    }
}

.account-dropdown-light__list.open div.inside {
    overflow-y: scroll;
    height: 200px
}

@media (min-width: 834px) {
    .account-dropdown-light__list.open div.inside {
        height: 230px
    }
}

.account-dropdown-light__list div.inside {
    width: 100%;
    height: 0px
}

.account-dropdown-light__list div.item {
    cursor: pointer;
    width: 100%;
    height: 50px;
    padding: 10px;
    color: #1a1a1a;
    text-align: right;
    font-size: 14px;
    background-color: #fff
}

.account-dropdown-light__list div.item div.bank-info img {
    width: 24px;
    margin-left: 4px
}

.account-dropdown-light__list div.item div.state {
    margin-right: 4px
}

.account-dropdown-light__list div.item span {
    text-align: right
}

.account-dropdown-light__list div.item span.code {
    font-size: 10px;
    margin-left: 4px
}

.account-dropdown-light__list div.item:hover {
    background-color: #4ef09d1a
}

.account-dropdown-light__list__children {
    padding: 0 16px;
    width: 100%
}

.account-dropdown-light__list__children :only-child {
    width: 50%
}

.account-dropdown-light__list__button {
    width: 100%;
    border-top: 1px solid #b2b2b2;
    padding: 16px 0 40px;
    color: #02a67f;
    cursor: pointer
}

.account-dropdown-light__list__button svg {
    margin-left: 8px
}

.market-dropdown {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 48px;
    width: 100%;
    z-index: 10
}

.market-dropdown__body {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-radius: 8px;
    background-color: var(--surface_secondary);
    height: 100%;
    transition-duration: .2s;
    padding: 0;
    cursor: pointer;
    border-bottom: 1px solid var(--border_line_secondary)
}

@media (min-width: 992px) {
    .market-dropdown__body {
        border-radius: 10px
    }
}

.market-dropdown__body.filled {
    border-bottom: 1px solid var(--border_line_primary)
}

.market-dropdown__body img.title-icon {
    width: 24px;
    margin-right: 10px
}

.market-dropdown__body img.icon {
    margin-left: 10px
}

.market-dropdown__body div {
    text-align: right
}

.market-dropdown__body div.title {
    color: var(--body_text_primary);
    flex: 1;
    padding-right: 10px;
    display: flex;
    flex-direction: column;
    font-size: 12px;
    align-items: flex-start
}

.market-dropdown__body div.title span.first {
    color: #666
}

.market-dropdown__body div.title span.title {
    font-size: 10px
}

@media (min-width: 834px) {
    .market-dropdown__body div.title {
        font-size: 14px
    }

    .market-dropdown__body div.title span.title {
        font-size: 12px
    }
}

.market-dropdown__body.open {
    transition-duration: .2s;
    border-bottom: 1px solid var(--border_line_primary);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.market-dropdown__body.open img.icon {
    transform: rotate(180deg)
}

.market-dropdown__list {
    width: 100%;
    position: absolute;
    top: 51px;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transition-duration: .2s;
    background-color: var(--surface_secondary);
    height: 0px;
    overflow-y: scroll;
    border-radius: 0 0 5px 5px
}

.market-dropdown__list .input4 {
    width: calc(100% - 32px);
    background-color: #b2b2b21a
}

@media (min-width: 992px) {
    .market-dropdown__list {
        top: 48px;
        border-radius: 0 0 10px 10px
    }
}

.market-dropdown__list.open {
    height: 200px;
    transition-duration: .2s;
    overflow-y: hidden
}

@media (min-width: 834px) {
    .market-dropdown__list.open {
        height: 230px
    }
}

.market-dropdown__list.open div.inside {
    overflow-y: scroll;
    height: 200px
}

.market-dropdown__list.open div.inside.withSearch {
    height: 148px
}

@media (min-width: 834px) {
    .market-dropdown__list.open div.inside {
        height: 230px
    }

    .market-dropdown__list.open div.inside.withSearch {
        height: 168px
    }
}

.market-dropdown__list div.inside {
    width: 100%;
    height: 0px
}

.market-dropdown__list div.item {
    cursor: pointer;
    width: 100%;
    height: 40px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-end;
    padding: 5px 10px;
    color: var(--body_text_primary);
    text-align: right;
    background-color: var(--surface_secondary)
}

.market-dropdown__list div.item button {
    background-color: unset;
    outline: unset;
    border: unset;
    margin-left: 4px;
    width: 16px;
    height: 16px
}

.market-dropdown__list div.item button img {
    width: 16px
}

.market-dropdown__list div.item div {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center
}

.market-dropdown__list div.item span {
    text-align: right
}

.market-dropdown__list div.item span.code {
    font-size: 10px;
    margin-left: 4px
}

.market-dropdown__list div.item span.item-tag {
    margin-right: 8px;
    color: #e7c400;
    font-size: 10px
}

.market-dropdown__list div.item img.image {
    margin-left: 10px;
    width: 24px
}

.market-dropdown__list div.item:hover {
    background-color: #4ef09d1a
}

.market-dropdown__list__empty {
    padding: 50px 0;
    width: 100%
}

.market-dropdown__list__empty img {
    width: 80px
}

@media (min-width: 992px) {
    .market-dropdown__list__empty img {
        width: 100px
    }
}

.market-dropdown__list__children {
    padding: 0 16px;
    width: 100%
}

.market-dropdown__list__children :only-child {
    width: 50%
}

.network-dropdown {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 48px;
    width: 100%;
    z-index: 10
}

.network-dropdown__body {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-radius: 8px;
    background-color: #333;
    height: 100%;
    transition-duration: .2s;
    padding: 0;
    cursor: pointer;
    border-bottom: 1px solid #666
}

@media (min-width: 992px) {
    .network-dropdown__body {
        border-radius: 10px
    }
}

.network-dropdown__body.filled {
    border-bottom: 1px solid #4ef09d
}

.network-dropdown__body img.title-icon {
    width: 24px;
    margin-right: 10px
}

.network-dropdown__body img.icon {
    margin-left: 10px
}

.network-dropdown__body div {
    text-align: right
}

.network-dropdown__body div.title {
    color: #fff;
    flex: 1;
    padding-right: 10px;
    display: flex;
    flex-direction: column;
    font-size: 12px;
    align-items: flex-start
}

.network-dropdown__body div.title span.first {
    color: #666
}

.network-dropdown__body div.title span.title {
    font-size: 10px
}

@media (min-width: 834px) {
    .network-dropdown__body div.title {
        font-size: 14px
    }

    .network-dropdown__body div.title span.title {
        font-size: 12px
    }
}

.network-dropdown__body.open {
    transition-duration: .2s;
    border-bottom: 1px solid #4ef09d;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.network-dropdown__body.open img.icon {
    transform: rotate(180deg)
}

.network-dropdown__list {
    width: 100%;
    position: absolute;
    top: 51px;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transition-duration: .2s;
    background-color: #333;
    height: 0px;
    overflow-y: scroll;
    border-radius: 0 0 5px 5px
}

.network-dropdown__list .input4 {
    width: calc(100% - 32px)
}

@media (min-width: 992px) {
    .network-dropdown__list {
        top: 48px;
        border-radius: 0 0 10px 10px
    }
}

.network-dropdown__list.open {
    height: 200px;
    transition-duration: .2s;
    overflow-y: hidden
}

@media (min-width: 834px) {
    .network-dropdown__list.open {
        height: 230px
    }
}

.network-dropdown__list.open div.inside {
    overflow-y: scroll;
    height: 200px
}

.network-dropdown__list.open div.inside.withSearch {
    height: 148px
}

@media (min-width: 834px) {
    .network-dropdown__list.open div.inside {
        height: 230px
    }

    .network-dropdown__list.open div.inside.withSearch {
        height: 168px
    }
}

.network-dropdown__list div.inside {
    width: 100%;
    height: 0px
}

.network-dropdown__list div.item {
    cursor: pointer;
    width: 100%;
    height: 40px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-end;
    padding: 5px 10px;
    color: #fff;
    text-align: right;
    background-color: #333
}

.network-dropdown__list div.item.disable {
    color: #b2b2b2;
    font-size: 12px
}

.network-dropdown__list div.item div {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center
}

.network-dropdown__list div.item span {
    text-align: right
}

.network-dropdown__list div.item span.code {
    font-size: 10px;
    margin-left: 4px
}

.network-dropdown__list div.item span.item-tag {
    margin-right: 8px;
    color: #e7c400;
    font-size: 10px
}

.network-dropdown__list div.item img {
    margin-left: 10px;
    width: 24px
}

.network-dropdown__list div.item:hover {
    background-color: #4ef09d1a
}

.network-dropdown__list__children {
    padding: 0 16px;
    width: 100%
}

.network-dropdown__list__children :only-child {
    width: 50%
}

.network-dropdown-light {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 48px;
    width: 100%;
    z-index: 10
}

.network-dropdown-light__body {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-radius: 8px;
    background-color: #fff;
    height: 100%;
    transition-duration: .2s;
    padding: 0;
    cursor: pointer;
    border-bottom: 1px solid #b2b2b2
}

@media (min-width: 992px) {
    .network-dropdown-light__body {
        border-radius: 10px
    }
}

.network-dropdown-light__body.filled {
    border-bottom: 1px solid #02a67f
}

.network-dropdown-light__body img.title-icon {
    width: 24px;
    margin-right: 10px
}

.network-dropdown-light__body img.icon {
    margin-left: 10px
}

.network-dropdown-light__body div {
    text-align: right
}

.network-dropdown-light__body div.title {
    color: #1a1a1a;
    flex: 1;
    padding-right: 10px;
    display: flex;
    flex-direction: column;
    font-size: 12px;
    align-items: flex-start
}

.network-dropdown-light__body div.title span.first {
    color: #666
}

.network-dropdown-light__body div.title span.title {
    font-size: 10px
}

@media (min-width: 834px) {
    .network-dropdown-light__body div.title {
        font-size: 14px
    }

    .network-dropdown-light__body div.title span.title {
        font-size: 12px
    }
}

.network-dropdown-light__body.open {
    transition-duration: .2s;
    border-bottom: 1px solid #02a67f;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.network-dropdown-light__body.open img.icon {
    transform: rotate(180deg)
}

.network-dropdown-light__list {
    width: 100%;
    position: absolute;
    top: 51px;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transition-duration: .2s;
    background-color: #fff;
    height: 0px;
    overflow-y: scroll;
    border-radius: 0 0 5px 5px
}

.network-dropdown-light__list .input4 {
    width: calc(100% - 32px)
}

@media (min-width: 992px) {
    .network-dropdown-light__list {
        top: 48px;
        border-radius: 0 0 10px 10px
    }
}

.network-dropdown-light__list.open {
    height: 200px;
    transition-duration: .2s;
    overflow-y: hidden
}

@media (min-width: 834px) {
    .network-dropdown-light__list.open {
        height: 230px
    }
}

.network-dropdown-light__list.open div.inside {
    overflow-y: scroll;
    height: 200px
}

.network-dropdown-light__list.open div.inside.withSearch {
    height: 148px
}

@media (min-width: 834px) {
    .network-dropdown-light__list.open div.inside {
        height: 230px
    }

    .network-dropdown-light__list.open div.inside.withSearch {
        height: 168px
    }
}

.network-dropdown-light__list div.inside {
    width: 100%;
    height: 0px
}

.network-dropdown-light__list div.item {
    cursor: pointer;
    width: 100%;
    height: 40px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-end;
    padding: 5px 10px;
    color: #1a1a1a;
    text-align: right;
    background-color: #fff
}

.network-dropdown-light__list div.item.disable {
    color: #b2b2b2;
    font-size: 12px
}

.network-dropdown-light__list div.item div {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center
}

.network-dropdown-light__list div.item span {
    text-align: right
}

.network-dropdown-light__list div.item span.code {
    font-size: 10px;
    margin-left: 4px
}

.network-dropdown-light__list div.item span.item-tag {
    margin-right: 8px;
    color: #e7c400;
    font-size: 10px
}

.network-dropdown-light__list div.item img {
    margin-left: 10px;
    width: 24px
}

.network-dropdown-light__list div.item:hover {
    background-color: #4ef09d1a
}

.network-dropdown-light__list__children {
    padding: 0 16px;
    width: 100%
}

.network-dropdown-light__list__children :only-child {
    width: 50%
}

.loan-dropdown {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 48px;
    width: 100%;
    margin-bottom: 16px
}

.loan-dropdown__body {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-radius: 8px;
    border-bottom: 1px solid #4ef09d;
    background-color: #333;
    height: 100%;
    transition-duration: .2s;
    padding: 0;
    z-index: 10;
    cursor: pointer
}

@media (min-width: 992px) {
    .loan-dropdown__body {
        border-radius: 10px
    }
}

.loan-dropdown__body__value img {
    width: 24px;
    margin-left: 8px
}

.loan-dropdown__body__value span {
    margin-left: 8px;
    color: #fff
}

.loan-dropdown__body__value span.ltv {
    color: #b2b2b2
}

.loan-dropdown__body div {
    text-align: right
}

.loan-dropdown__body div.title {
    color: #fff;
    flex: 1;
    padding-right: 10px;
    display: flex;
    flex-direction: column;
    font-size: 12px;
    align-items: flex-start
}

.loan-dropdown__body div.title span.first {
    color: #b2b2b2
}

.loan-dropdown__body div.title span.title {
    font-size: 10px
}

@media (min-width: 834px) {
    .loan-dropdown__body div.title {
        font-size: 14px
    }

    .loan-dropdown__body div.title span.title {
        font-size: 12px
    }
}

.loan-dropdown__body.open {
    transition-duration: .2s;
    border-bottom: 1px solid #4ef09d;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.loan-dropdown__body.open img.icon {
    transform: rotate(180deg)
}

.loan-dropdown__body img {
    margin-left: 10px
}

.loan-dropdown__list {
    width: 100%;
    position: absolute;
    top: 51px;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transition-duration: .2s;
    background-color: #333;
    height: 0px;
    z-index: 10;
    overflow-y: scroll;
    border-radius: 0 0 5px 5px
}

@media (min-width: 992px) {
    .loan-dropdown__list {
        top: 48px;
        border-radius: 0 0 10px 10px
    }
}

.loan-dropdown__list.open {
    height: 200px;
    transition-duration: .2s;
    overflow-y: hidden
}

@media (min-width: 834px) {
    .loan-dropdown__list.open {
        height: 230px
    }
}

.loan-dropdown__list.open div.inside {
    overflow-y: scroll;
    height: 200px
}

@media (min-width: 834px) {
    .loan-dropdown__list.open div.inside {
        height: 230px
    }
}

.loan-dropdown__list div.inside {
    width: 100%;
    height: 0px
}

.loan-dropdown__list div.item {
    cursor: pointer;
    width: 100%;
    height: 56px;
    padding: 0 12px;
    color: #fff;
    border-bottom: 1px solid #666
}

.loan-dropdown__list div.item span {
    text-align: right
}

.loan-dropdown__list div.item span.code,
.loan-dropdown__list div.item span.ltv {
    margin-right: 20px
}

.loan-dropdown__list div.item img {
    width: 24px;
    margin-right: 8px
}

.loan-dropdown__list div.item div.right {
    color: #b2b2b2
}

.loan-dropdown__list__children {
    padding: 0 16px;
    width: 100%
}

.loan-dropdown__list__children :only-child {
    width: 50%
}

.loan-dropdown-light {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 48px;
    width: 100%;
    margin-bottom: 16px
}

.loan-dropdown-light__body {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-radius: 8px;
    border-bottom: 1px solid #b2b2b2;
    background-color: #fff;
    height: 100%;
    transition-duration: .2s;
    padding: 0;
    z-index: 10;
    cursor: pointer
}

@media (min-width: 992px) {
    .loan-dropdown-light__body {
        border-radius: 10px
    }
}

.loan-dropdown-light__body.filled {
    border-bottom: 1px solid #02a67f
}

.loan-dropdown-light__body__value img {
    width: 24px;
    margin-left: 8px
}

.loan-dropdown-light__body__value span {
    margin-left: 8px;
    color: #1a1a1a
}

.loan-dropdown-light__body__value span.ltv {
    color: #666
}

.loan-dropdown-light__body div {
    text-align: right
}

.loan-dropdown-light__body div.title {
    color: #1a1a1a;
    flex: 1;
    padding-right: 10px;
    display: flex;
    flex-direction: column;
    font-size: 12px;
    align-items: flex-start
}

.loan-dropdown-light__body div.title span.first {
    color: #666
}

.loan-dropdown-light__body div.title span.title {
    font-size: 10px
}

@media (min-width: 834px) {
    .loan-dropdown-light__body div.title {
        font-size: 14px
    }

    .loan-dropdown-light__body div.title span.title {
        font-size: 12px
    }
}

.loan-dropdown-light__body.open {
    transition-duration: .2s;
    border-bottom: 1px solid #4ef09d;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.loan-dropdown-light__body.open img.icon {
    transform: rotate(180deg)
}

.loan-dropdown-light__body img {
    margin-left: 10px
}

.loan-dropdown-light__list {
    width: 100%;
    position: absolute;
    top: 51px;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transition-duration: .2s;
    background-color: #fff;
    height: 0px;
    z-index: 10;
    overflow-y: scroll;
    border-radius: 0 0 5px 5px
}

@media (min-width: 992px) {
    .loan-dropdown-light__list {
        top: 48px;
        border-radius: 0 0 10px 10px
    }
}

.loan-dropdown-light__list.open {
    height: 200px;
    transition-duration: .2s;
    overflow-y: hidden
}

@media (min-width: 834px) {
    .loan-dropdown-light__list.open {
        height: 230px
    }
}

.loan-dropdown-light__list.open div.inside {
    overflow-y: scroll;
    height: 200px
}

@media (min-width: 834px) {
    .loan-dropdown-light__list.open div.inside {
        height: 230px
    }
}

.loan-dropdown-light__list div.inside {
    width: 100%;
    height: 0px
}

.loan-dropdown-light__list div.item {
    cursor: pointer;
    width: 100%;
    height: 56px;
    padding: 0 12px;
    color: #1a1a1a;
    text-align: right;
    background-color: #fff
}

.loan-dropdown-light__list div.item span {
    text-align: right
}

.loan-dropdown-light__list div.item span.code,
.loan-dropdown-light__list div.item span.ltv {
    margin-right: 20px
}

.loan-dropdown-light__list div.item img {
    width: 24px;
    margin-right: 8px
}

.loan-dropdown-light__list div.item div.right {
    color: #b2b2b2
}

.loan-dropdown-light__list__children {
    padding: 0 16px;
    width: 100%
}

.loan-dropdown-light__list__children :only-child {
    width: 50%
}

.toast {
    position: fixed;
    width: calc(100% - 60px);
    padding: 15px;
    border-radius: 20px;
    right: 30px;
    z-index: 10000;
    transition-duration: .3s;
    top: -80px;
    align-items: flex-start
}

@media (min-width: 834px) {
    .toast {
        width: unset;
        min-width: 40%;
        max-width: 40%;
        padding: 20px
    }
}

@media (min-width: 992px) {
    .toast {
        width: unset;
        min-width: 20%;
        max-width: 20%
    }
}

.toast button {
    background-color: unset;
    border: unset;
    outline: unset
}

.toast.open {
    top: 30px;
    transition-duration: .3s
}

@media (min-width: 834px) {
    .toast.open {
        top: 100px
    }
}

@media (min-width: 992px) {
    .toast.open {
        top: 120px
    }
}

.toast.error {
    background: linear-gradient(0deg, #1a1a1a, #1a1a1a), linear-gradient(0deg, #ff5a5a26, #ff5a5a26), linear-gradient(0deg, #ff5a5a0d, #ff5a5a0d);
    border: 1px solid rgba(255, 90, 90, .1490196078)
}

.toast.warning {
    background: linear-gradient(0deg, #1a1a1a, #1a1a1a), linear-gradient(0deg, #e7c40026, #e7c40026), linear-gradient(0deg, #e7c4000d, #e7c4000d);
    border: 1px solid rgba(231, 196, 0, .1490196078)
}

.toast.success {
    background: linear-gradient(0deg, #1a1a1a, #1a1a1a), linear-gradient(0deg, #4ef09d26, #4ef09d26), linear-gradient(0deg, #4ef09d0d, #4ef09d0d);
    border: 1px solid rgba(78, 240, 157, .1490196078)
}

.toast.info {
    background: linear-gradient(0deg, #1a1a1a, #1a1a1a), linear-gradient(0deg, #74a5eb26, #74a5eb26), linear-gradient(0deg, #74a5eb0d, #74a5eb0d);
    border: 1px solid rgba(116, 165, 235, .1490196078)
}

.toast span {
    width: 100%;
    color: #fff;
    margin-right: 8px
}

.general_skeleton-wrapper {
    width: 100%
}

.general_skeleton-wrapper>span {
    padding-bottom: 16px
}

.row_general_skeleton-wrapper {
    display: flex;
    width: 100%;
    gap: 16px;
    flex-wrap: nowrap
}

.row_general_skeleton-wrapper>div {
    flex: 1
}

@media (max-width: 992px) {
    .row_general_skeleton-wrapper {
        flex-wrap: wrap
    }

    .row_general_skeleton-wrapper>div {
        flex: 0 0 100%
    }
}