@charset "UTF-8";
@import"https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800&display=swap";
@import"https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap";
@import"https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap";
@import"https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap";
@import"https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap";

@keyframes spin-9d4ddb55 {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}

.loader[data-v-9d4ddb55] {
    animation: spin-9d4ddb55 3s linear infinite
}

.auth-popup {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 48px;
    right: 0;
    width: 360px;
    border-radius: 12px;
    text-align: left;
    background: var(--gray-card, #29282A);
    box-shadow: 0 4px 12px #1b1a1ca3;
    padding: 24px;
    box-sizing: border-box
}

@media (max-width: 1079px) {
    .auth-popup {
        width: 100%;
        height: 100%;
        top: 0;
        position: fixed;
        z-index: 10;
        border-radius: 0
    }
}

.auth-popup .main_button,
.auth-popup .main_button-text {
    font-weight: 600
}

.auth-popup .title {
    margin-bottom: 24px;
    color: var(--white-100, #FFF);
    font-family: Roboto, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px
}

@media (max-width: 1079px) {
    .auth-popup .title {
        margin-bottom: 16px
    }
}

.auth-popup .connectors-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    margin-bottom: 16px
}

.auth-popup .connector-button,
.auth-popup .address-button {
    display: flex;
    position: relative;
    align-items: center;
    padding-left: 64px;
    height: 60px;
    width: 100%;
    flex-shrink: 0;
    color: var(--white-100, var(--Color, #FFF));
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    border-radius: 8px;
    border: none;
    background: var(--gray-controls, #363537);
    cursor: pointer
}

.auth-popup .connector-button>img,
.auth-popup .address-button>img {
    position: absolute;
    left: 12px;
    width: 36px
}

.auth-popup .connector-button>svg,
.auth-popup .address-button>svg {
    position: absolute;
    right: 12px;
    width: 24px
}

.auth-popup .address-button>svg {
    position: absolute;
    right: 12px;
    opacity: .8;
    width: 32px;
    cursor: pointer
}

.auth-popup .google-button {
    display: flex;
    position: relative;
    align-items: center;
    padding-left: 64px;
    height: 60px;
    width: 100%;
    flex-shrink: 0;
    color: var(--white-100, var(--Color, #FFF));
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    border-radius: 8px;
    border: none;
    background: var(--gray-controls, #363537);
    cursor: pointer
}

.auth-popup .google-button svg {
    position: absolute;
    left: 12px;
    height: 32px;
    width: 32px
}

.auth-popup .use-email-p {
    margin: 0;
    padding: 0 0 16px;
    color: var(--white-38, rgba(255, 255, 255, .38));
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px
}

.auth-popup .forgot-password-p {
    margin: 0 0 24px;
    color: var(--white-100, var(--Color, #FFF));
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px
}

.auth-popup .recovery-password-sent {
    display: flex;
    flex-direction: column;
    align-items: center
}

.auth-popup .recovery-password-sent>p {
    text-align: center
}

.auth-popup .privacy-policy-p {
    margin: 0 0 24px;
    padding: 0;
    color: var(--white-38, rgba(255, 255, 255, .38));
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px
}

.auth-popup .privacy-policy-p a {
    color: var(--green, #02C076)
}

.auth-popup .error-text {
    margin-bottom: 12px;
    color: var(--red, #FF783E);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px
}

.auth-popup .input-state input {
    padding: 22px 16px 10px 56px
}

.auth-popup .input-state label {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #ffffff61;
    position: absolute;
    pointer-events: none;
    left: 56px;
    top: 30%;
    transition: .2s ease all;
    -moz-transition: .2s ease all;
    -webkit-transition: .2s ease all
}

.auth-popup .input-state .svg {
    position: absolute;
    left: 12px;
    top: 16px
}

.auth-popup .input-state .svg path {
    transition: all .3s ease-in-out
}

.auth-popup .input-state input:focus~label,
.auth-popup .input-state input:valid~label,
.auth-popup .input-state textarea:focus~label,
.auth-popup .input-state textarea:valid~label {
    top: 8px;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: #ffffff61
}

.auth-popup .input-state:focus-within {
    box-shadow: 0 0 0 2px #02c076
}

.auth-popup .input-state:focus-within input:focus~label,
.auth-popup .input-state:focus-within input:valid~label,
.auth-popup .input-state:focus-within textarea:focus~label,
.auth-popup .input-state:focus-within textarea:valid~label {
    color: #02c076
}

.auth-popup .input-state:focus-within .svg path {
    fill: #02c076;
    fill-opacity: 1
}

.auth-popup .input-state_error {
    box-shadow: 0 0 0 2px #ff783e
}

.auth-popup .input-state_error input:focus~label,
.auth-popup .input-state_error input:valid~label,
.auth-popup .input-state_error textarea:focus~label,
.auth-popup .input-state_error textarea:valid~label {
    color: #ff783e
}

.auth-popup .input-state_error .svg path {
    fill: #ff783e !important;
    fill-opacity: 1
}

.auth-popup .input-state_error:focus-within {
    box-shadow: 0 0 0 2px #ff783e
}

.auth-popup .input-state_error:focus-within input:focus~label,
.auth-popup .input-state_error:focus-within input:valid~label,
.auth-popup .input-state_error:focus-within textarea:focus~label,
.auth-popup .input-state_error:focus-within textarea:valid~label {
    color: #ff783e
}

.auth-popup .input-state_error:focus-within .svg path {
    fill: #ff783e !important;
    fill-opacity: 1
}

.auth-popup .input-state.email {
    margin-bottom: 8px
}

.auth-popup .main_button.forgot-password {
    margin: 62px 0 0
}

@media (max-width: 1079px) {
    .auth-popup .main_button {
        width: 100%;
        max-width: 100%
    }
}

.confirmation {
    display: flex;
    flex-direction: column;
    align-items: center
}

.confirmation .title {
    width: 100%
}

.confirmation>p {
    margin: 20px 0 32px;
    color: var(--white-100, var(--Color, #FFF));
    text-align: center;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px
}

.helper-link {
    margin: 16px 12px 28px;
    color: var(--green, #02C076);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    cursor: pointer
}

.close-icon {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    cursor: pointer;
}

.close-icon path {
    fill: #7a7a7b
}

.hide-show-password-button {
    display: flex;
    position: absolute;
    width: 24px;
    height: 24px;
    top: 12px;
    right: 12px;
    cursor: pointer
}

.hide-show-password-button>svg {
    position: relative !important;
    left: 0 !important;
    top: 8px !important
}

.profile-name {
    display: flex;
    padding: 20px 24px;
    min-height: 84px;
    color: var(--gray-card, #29282A);
    font-size: 24px;
    font-style: normal;
    font-weight: 900;
    line-height: 28px;
    background: var(--green, #02C076);
    box-sizing: border-box
}

.profile-name.blue {
    background: #217EFF
}

.profile-name.has-cover {
    display: flex;
    padding: 18px 12px;
    height: 140px;
    flex-direction: column;
    align-items: flex-start
}

.profile-name.has-cover>span.title {
    display: inline-flex;
    margin: 0 0 3px;
    padding: 2px 12px;
    align-items: center;
    gap: 6px;
    height: fit-content;
    border-radius: 4px;
    background: #02C076
}

.profile-name.has-cover .cover-name {
    display: inline-flex;
    padding: 4px 8px 4px 6px;
    align-items: center;
    gap: 4px;
    border-radius: 4px;
    color: var(--white-100, #FFF);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    background: rgba(41, 40, 42, .64);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px)
}

.profile-name.blue.has-cover>span.title {
    background: #217EFF
}

.profile-name.first {
    background-image: image-set(url(/images/1-3b339e71.png) 1x, url(/images/1-2x-96980cc3.png) 2x, url(/images/1-4x-a9de88c7.png) 4x);
    background-size: cover;
    background-position: center
}

.profile-name.second {
    background-image: image-set(url(/images/2-621ee57c.png) 1x, url(/images/2-2x-3779c67c.png) 2x, url(/images/2-4x-97a4b53e.png) 4x);
    background-size: cover;
    background-position: center
}

.profile-name.third {
    background-image: image-set(url(/images/3-9fc496ef.png) 1x, url(/images/3-2x-91ff3656.png) 2x, url(/images/3-4x-001fa220.png) 4x);
    background-size: cover;
    background-position: center
}

.profile-name.fourth {
    background-image: image-set(url(/images/4-b8435038.png) 1x, url(/images/4-2x-e2b73c5f.png) 2x, url(/images/4-4x-358d3812.png) 4x);
    background-size: cover;
    background-position: center
}

.profile-name.fifth {
    background-image: image-set(url(/images/5-f2ec7b9c.png) 1x, url(/images/5-2x-fb2d2a65.png) 2x, url(/images/5-4x-51b840f3.png) 4x);
    background-size: cover;
    background-position: center
}

.connect-wallet {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    height: 48px;
    color: var(--gray-card, #29282A);
    background: var(--green, #02C076);
    box-sizing: border-box
}

.connect-wallet.blue {
    background: #217EFF
}

.connect-wallet.connected>span {
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.connect-wallet.connected>span span:first-child {
    color: var(--gray-card, #29282A);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 12px
}

.list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 0 12px
}

.list .list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 20px;
    height: 48px;
    width: 100%;
    color: var(--white-100, var(--Color, #FFF));
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    box-sizing: border-box;
    transition: all .3s
}

.list .list-item:hover {
    background: var(--gray-controls, #363537)
}

.list .list-item>svg path {
    fill: var(--green, #02C076);
    fill-opacity: 1
}

.list .list-item.blue>svg path {
    fill: #217eff;
    fill-opacity: 1
}

.list .list-item.orange-icon>svg path {
    fill: #ff783e;
    fill-opacity: 1
}

.input-state input,
.input-state textarea {
    background: #363537;
    width: 100%;
    height: 60px;
    box-sizing: border-box;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    padding: 26px 26px 10px 12px;
    display: block;
    outline: none;
    border: none;
    transition: all .3s ease-in-out
}

.input-state input:hover,
.input-state textarea:hover {
    background: linear-gradient(0deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .04)), #363537
}

.input-state_error label {
    color: #ff783e !important
}

.input-state_error:focus-within {
    box-shadow: 0 0 0 2px #ff783e !important
}

.profile-wrapper .banner {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 16px;
    background: url(/images/present-bg-7657ef20.png) no-repeat bottom right, #02C076;
    min-height: 112px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 8px
}

.resent-link {
    margin: 8px 0 0 !important
}

.profile-wrapper .banner {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 16px;
    background: url(/images/present-bg-7657ef20.png) no-repeat bottom right, #02C076;
    min-height: 112px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 8px
}

.profile-wrapper.exchange {
    padding: 0;
    margin-top: 108px;
    overflow-x: hidden;
    height: 340px
}

@media (max-width: 1079px) {
    .profile-wrapper.exchange {
        height: auto
    }
}

.profile-wrapper.exchange.has-scroll {
    height: 492px
}

@media (max-width: 1079px) {
    .profile-wrapper.exchange.has-scroll {
        height: auto
    }
}

.profile-wrapper.exchange>.title {
    height: 108px;
    padding-top: 20px;
    align-items: flex-start;
    box-sizing: border-box
}

.filter-buttons {
    display: flex;
    position: absolute;
    justify-content: center;
    bottom: 12px;
    left: 0;
    width: 100%;
    gap: 4px
}

.filter-buttons>span {
    display: flex;
    height: 32px;
    padding: 16px 12px;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    background: var(--gray-controls, #363537);
    color: var(--green, #02C076);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    box-sizing: border-box;
    cursor: pointer;
    transition: all .3s
}

.filter-buttons>span.active {
    background: var(--green, #02C076);
    color: var(--gray-card, #29282A)
}

@media (max-width: 1079px) {
    .exchanges-list {
        height: calc(100vh - 172px)
    }
}

.filter-buttons.blue>span {
    color: #0a57c1
}

.filter-buttons.blue>span.active {
    background: #0A57C1;
    color: #363537
}

.exchange-item {
    display: flex;
    padding: 13px 16px;
    width: 100%;
    height: 64px;
    box-sizing: border-box;
    transition: background .3s
}

.exchange-item:hover {
    background: #313032
}

.exchange-item .tokens {
    position: relative;
    margin-right: 8px;
    min-width: 36px
}

.exchange-item .tokens img {
    position: absolute
}

.exchange-item .tokens img:first-child {
    left: 0;
    top: 0;
    height: 24px;
    width: 24px
}

.exchange-item .tokens img:last-child {
    right: 0;
    bottom: 0;
    height: 28px;
    width: 28px;
    z-index: 1;
    box-shadow: 0 4px 12px #1b1a1ca3
}

.exchange-item .data-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%
}

.exchange-item .data-wrapper .amounts {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px
}

.exchange-item .data-wrapper .amounts span {
    color: #7a7a7b
}

.exchange-item .data-wrapper .date-status {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #7a7a7b;
    text-align: right;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px
}

.exchange-item .data-wrapper .date-status div {
    display: flex;
    justify-content: flex-end;
    gap: 2px;
    align-items: center
}

.exchange-item .data-wrapper .date-status div>svg {
    height: auto
}

.exchange-item .data-wrapper .date-status div.processing {
    color: #434244
}

.exchange-item .data-wrapper .date-status div.complete {
    color: #02c076
}

.exchange-item .data-wrapper .date-status div.error {
    color: #ff783e
}

.loader {
    height: 50px;
    display: flex;
    justify-content: center
}

.loader>svg {
    width: 32px
}

.profile-wrapper {
    margin-top: 68px;
    padding: 12px;
    overflow-y: auto;
    height: 356px;
    cursor: auto;
    box-sizing: border-box
}

@media (max-width: 1079px) {
    .profile-wrapper {
        height: auto
    }
}

.profile-wrapper .title {
    display: flex;
    align-items: center;
    gap: 12px;
    position: absolute;
    padding: 0 0 0 12px;
    height: 68px;
    width: 100%;
    left: 0;
    top: 0;
    color: var(--white-100, var(--Color, #FFF));
    font-size: 24px;
    font-style: normal;
    font-weight: 900;
    line-height: 28px;
    z-index: 10;
    cursor: pointer;
    border-radius: 12px 12px 0 0;
    background: var(--gray-card, #29282A);
    box-shadow: 0 4px 12px #1b1a1ca3
}

.profile-wrapper .title>svg {
    width: 40px;
    height: 40px
}

.profile-wrapper .title.blue>svg path {
    fill: #0a57c1
}

.profile-wrapper .sub-title {
    display: flex;
    margin: 0 0 12px;
    padding: 0 12px;
    color: var(--white-100, var(--Color, #FFF));
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px
}

.profile-wrapper .address-info {
    display: flex;
    margin: 0 0 20px;
    position: relative;
    align-items: center;
    padding-left: 64px;
    height: 60px;
    width: 100%;
    flex-shrink: 0;
    color: var(--white-100, var(--Color, #FFF));
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    border-radius: 8px;
    border: none;
    background: var(--gray-controls, #363537);
    box-sizing: border-box
}

.profile-wrapper .address-info img {
    position: absolute;
    left: 12px;
    width: 36px
}

.profile-wrapper .address-info>svg {
    position: absolute;
    right: 12px;
    width: 24px
}

.profile-wrapper .profile-link {
    display: flex;
    gap: 6px;
    padding: 0 7px;
    margin: 0 0 24px;
    color: var(--green, #02C076);
    text-align: left;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    cursor: pointer
}

.profile-wrapper .profile-link>svg {
    width: 24px;
    height: 24px
}

.profile-wrapper .profile-link>svg path {
    fill: var(--green, #02C076);
    fill-opacity: 1
}

.profile-wrapper .profile-link.blue {
    color: #0a57c1
}

.profile-wrapper .profile-link.blue>svg path {
    fill: #0a57c1;
    fill-opacity: 1
}

.profile-wrapper .successful-text {
    display: flex;
    gap: 6px;
    margin: 0 0 24px;
    color: var(--green, #02C076);
    text-align: left;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px
}

.profile-wrapper .successful-text>svg path {
    fill: var(--green, #02C076);
    fill-opacity: 1
}

.profile-wrapper .section {
    display: flex;
    margin: 0 0 32px
}

.profile-wrapper .input-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0 0 32px
}

.profile-wrapper .banner {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 16px;
    background: url(/images/present-bg-7657ef20.png) no-repeat bottom right, #02C076;
    min-height: 112px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 8px
}

.profile-wrapper .banner>svg {
    cursor: pointer;
    position: absolute;
    top: 2px;
    right: 2px
}

.profile-wrapper .banner>h4 {
    margin: 0 0 6px;
    color: #29282a;
    font-size: 20px;
    font-style: normal;
    font-weight: 900;
    line-height: 24px
}

.profile-wrapper .banner>span {
    text-align: left;
    width: 148px;
    color: #363537;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px
}

.profile-wrapper .input-state {
    margin: 0
}

.profile-wrapper .input-state input {
    padding: 20px 12px 14px 48px;
    height: 48px;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px
}

.profile-wrapper .input-state label {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    color: #ffffff61;
    position: absolute;
    pointer-events: none;
    left: 48px;
    top: 14px;
    transition: .2s ease all;
    -moz-transition: .2s ease all;
    -webkit-transition: .2s ease all
}

.profile-wrapper .input-state .svg {
    position: absolute;
    left: 8px;
    top: 10px;
    width: 28px;
    height: 28px
}

.profile-wrapper .input-state .svg path {
    transition: all .3s ease-in-out
}

.profile-wrapper .input-state input:focus~label,
.profile-wrapper .input-state input:valid~label,
.profile-wrapper .input-state input[disabled]~label {
    top: 4px;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #ffffff61
}

.profile-wrapper .input-state:focus-within {
    box-shadow: 0 0 0 2px #02c076
}

.profile-wrapper .input-state:focus-within input:focus~label,
.profile-wrapper .input-state:focus-within input:valid~label {
    color: #02c076
}

.profile-wrapper .input-state:focus-within .svg path {
    fill: #02c076;
    fill-opacity: 1
}

.profile-wrapper .input-state_error {
    box-shadow: 0 0 0 2px #ff783e
}

.profile-wrapper .input-state_error input:focus~label,
.profile-wrapper .input-state_error input:valid~label,
.profile-wrapper .input-state_error textarea:focus~label,
.profile-wrapper .input-state_error textarea:valid~label {
    color: #ff783e
}

.profile-wrapper .input-state_error .svg path {
    fill: #ff783e !important;
    fill-opacity: 1
}

.profile-wrapper .input-state_error:focus-within {
    box-shadow: 0 0 0 2px #ff783e
}

.profile-wrapper .input-state_error:focus-within input:focus~label,
.profile-wrapper .input-state_error:focus-within input:valid~label,
.profile-wrapper .input-state_error:focus-within textarea:focus~label,
.profile-wrapper .input-state_error:focus-within textarea:valid~label {
    color: #ff783e
}

.profile-wrapper .input-state_error:focus-within .svg path {
    fill: #ff783e !important;
    fill-opacity: 1
}

.profile-wrapper .input-state.blue:focus-within {
    box-shadow: 0 0 0 2px #217eff
}

.profile-wrapper .input-state.blue:focus-within input:focus~label,
.profile-wrapper .input-state.blue:focus-within input:valid~label {
    color: #217eff
}

.profile-wrapper .input-state.blue:focus-within .svg path {
    fill: #217eff;
    fill-opacity: 1
}

.profile-wrapper .hide-show-password-button {
    display: flex;
    position: absolute;
    width: 24px;
    height: 24px;
    top: 12px;
    right: 12px;
    cursor: pointer
}

.profile-wrapper .hide-show-password-button svg {
    position: relative;
    left: 0;
    top: 0
}

.save-close-buttons-wrapper {
    display: flex;
    gap: 8px;
    bottom: 0;
    left: 0;
    position: absolute;
    padding: 12px;
    width: 100%;
    color: var(--gray-card, #29282A);
    background: var(--gray-card, #29282A);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    z-index: 1;
    box-sizing: border-box
}

.save-close-buttons-wrapper>div {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    height: 40px;
    transition: all .3s
}

.save-close-buttons-wrapper>div:hover {
    filter: brightness(1.1)
}

.save-close-buttons-wrapper>div.cancel-button {
    background: var(--red, #FF783E)
}

.save-close-buttons-wrapper>div.update-button {
    background: var(--green, #02C076)
}

.input-info {
    padding: 0 8px;
    color: #7a7a7b;
    text-align: left;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px
}

.input-info>span {
    color: var(--green, #02C076)
}

.error-text {
    margin-bottom: 12px;
    text-align: left;
    color: var(--red, #FF783E);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px
}

.scrollable::-webkit-scrollbar {
    width: 8px;
    background: transparent
}

.scrollable::-webkit-scrollbar-thumb {
    background-color: #444;
    border-radius: 4px;
    border: 2px solid transparent;
    background-clip: content-box
}

.scrollable::-webkit-scrollbar-thumb:hover {
    background-color: #555
}

.profile-wrapper.set-new-password {
    height: 348px;
    padding: 3px 12px 12px
}

.profile-wrapper.set-new-password>.title {
    box-shadow: none
}

.nft[data-v-4fd42656] {
    padding: 0 12px 12px;
    height: 492px
}

@media (max-width: 1079px) {
    .nft[data-v-4fd42656] {
        padding: 0 12px 136px;
        height: 100vh
    }
}

.nft .title[data-v-4fd42656] {
    box-shadow: none
}

.nft .nft-sub-title[data-v-4fd42656] {
    padding: 0 12px 16px;
    color: #fff;
    text-align: left;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px
}

@media (max-width: 1079px) {
    .nft .nft-sub-title[data-v-4fd42656] {
        width: 296px;
        margin: 0 auto
    }
}

.nft .nft-sub-title span[data-v-4fd42656] {
    color: #ffffff61
}

.nft .nft-sub-title span>span[data-v-4fd42656] {
    color: #02c076
}

.nft .cards-wrapper[data-v-4fd42656] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 28px
}

@media (max-width: 1079px) {
    .nft .cards-wrapper[data-v-4fd42656] {
        width: 296px;
        margin: 0 auto 28px
    }
}

.nft .cards-wrapper .card[data-v-4fd42656] {
    display: flex;
    position: relative;
    flex-direction: column;
    width: 296px;
    min-height: 184px;
    padding: 12px 16px;
    text-align: left;
    border-radius: 8px;
    background: #363537;
    box-sizing: border-box
}

.nft .cards-wrapper .card.achieved[data-v-4fd42656] {
    padding: 8px;
    background-size: contain
}

.nft .cards-wrapper .card.achieved .card-title[data-v-4fd42656] {
    display: inline-flex;
    margin: 0 0 4px;
    padding: 4px 16px 4px 6px;
    width: fit-content;
    height: auto;
    position: relative;
    align-items: center;
    gap: 6px;
    color: #29282a;
    font-size: 20px;
    font-style: normal;
    font-weight: 900;
    line-height: 24px;
    border-radius: 4px;
    background: #02C076;
    box-sizing: border-box
}

.nft .cards-wrapper .card.achieved .card-title>svg[data-v-4fd42656] {
    width: 20px;
    height: 20px
}

.nft .cards-wrapper .card.achieved p.description[data-v-4fd42656] {
    display: inline-flex;
    margin: 0;
    padding: 4px 8px;
    width: 164px;
    align-items: flex-start;
    border-radius: 4px;
    color: #363537;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    background: #02C076;
    box-sizing: border-box
}

.nft .cards-wrapper .card.achieved .preferences[data-v-4fd42656] {
    display: flex;
    position: absolute;
    bottom: 8px;
    left: 8px;
    gap: 4px
}

.nft .cards-wrapper .card.achieved .preferences .item[data-v-4fd42656] {
    display: inline-flex;
    height: 32px;
    padding: 16px 12px 16px 8px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border-radius: 6px;
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    background: rgba(41, 40, 42, .64);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    box-sizing: border-box;
    cursor: pointer
}

.nft .cards-wrapper .card.achieved[data-v-4fd42656] {
    background-size: contain
}

.nft .cards-wrapper .card.you-will-get .card-title[data-v-4fd42656] {
    margin: 0 0 8px;
    width: 184px;
    color: #fff;
    font-size: 20px;
    font-style: normal;
    font-weight: 900;
    line-height: 24px
}

.nft .cards-wrapper .card.you-will-get .progress[data-v-4fd42656] {
    display: flex;
    justify-content: center;
    position: absolute;
    top: 12px;
    right: 16px;
    color: #ffffff61;
    font-size: 16px;
    font-weight: 700;
    line-height: 28px;
    width: 72px;
    height: 28px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .08);
    overflow: hidden
}

.nft .cards-wrapper .card.you-will-get .progress>span[data-v-4fd42656] {
    z-index: 1
}

.nft .cards-wrapper .card.you-will-get .progress>span.green[data-v-4fd42656] {
    color: #02c076
}

.nft .cards-wrapper .card.you-will-get .progress .progress-bar[data-v-4fd42656] {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #13513A
}

.nft .cards-wrapper .card.you-will-get .preferences[data-v-4fd42656] {
    display: flex;
    gap: 8px;
    min-height: 18px;
    margin: 0 0 8px
}

.nft .cards-wrapper .card.you-will-get .preferences .item[data-v-4fd42656] {
    display: flex;
    gap: 1px;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px
}

.nft .cards-wrapper .card.you-will-get .preferences .item.item-nft[data-v-4fd42656] {
    color: var(--green, #02C076)
}

.nft .cards-wrapper .card.you-will-get .preferences .item.item-discount[data-v-4fd42656] {
    color: var(--red, #FF783E)
}

.nft .cards-wrapper .card.you-will-get .preferences .item.item-cover[data-v-4fd42656] {
    gap: 2px;
    align-items: center;
    color: #bdc63e
}

.nft .cards-wrapper .card.you-will-get .description[data-v-4fd42656] {
    display: flex;
    margin: 0 0 12px;
    width: 148px;
    min-height: 56px;
    color: var(--white-38, rgba(255, 255, 255, .38));
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px
}

.nft .cards-wrapper .card.you-will-get .buttons-wrapper[data-v-4fd42656] {
    display: flex;
    gap: 4px;
    z-index: 1
}

.nft .cards-wrapper .card.you-will-get .button-get-in[data-v-4fd42656] {
    display: inline-flex;
    height: 32px;
    padding: 16px 12px;
    width: fit-content;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    background: var(--green, #02C076);
    color: var(--gray-card, #29282A);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    box-sizing: border-box;
    cursor: pointer
}

.nft .cards-wrapper .card.you-will-get .button-get-in.disabled[data-v-4fd42656] {
    background: rgba(255, 255, 255, .04);
    cursor: not-allowed
}

.nft .cards-wrapper .card.you-will-get .button-buy[data-v-4fd42656] {
    display: inline-flex;
    height: 32px;
    width: 32px;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    background: var(--green, #02C076);
    color: var(--gray-card, #29282A);
    text-align: center;
    box-sizing: border-box;
    cursor: pointer
}

.nft .cards-wrapper .card.you-will-get .present-img[data-v-4fd42656] {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 161px;
    height: 134px
}

.nft.blue .nft-sub-title span>span[data-v-4fd42656] {
    color: #217eff
}

.nft.blue .cards-wrapper .card.achieved .card-title[data-v-4fd42656],
.nft.blue .cards-wrapper .card.achieved p.description[data-v-4fd42656] {
    background: #217EFF
}

.nft.blue .cards-wrapper .card .progress>span.green[data-v-4fd42656] {
    color: #217eff
}

.nft.blue .cards-wrapper .card .progress .progress-bar[data-v-4fd42656] {
    background: #2B4E81
}

.nft.blue .cards-wrapper .card .preferences .item.item-nft[data-v-4fd42656] {
    color: #217eff
}

.nft.blue .cards-wrapper .card .button-get-in[data-v-4fd42656] {
    color: var(--gray-card, #29282A);
    background: var(--blue, #217EFF)
}

.header {
    width: 100%;
    position: relative;
    z-index: 999999
}

@media (max-width: 1079px) {
    .header {
        position: fixed;
        top: 0;
        left: 0;
        height: 64px;
        z-index: 99999;
        background: #1B1A1C;
        box-shadow: 0 4px 12px #1b1a1ca3
    }

    .header.transparent {
        background: transparent;
        box-shadow: none
    }
}

.header-block {
    padding: 28px 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center
}

.header-block-main {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    box-sizing: border-box
}

.header-block-main .header-desktop-logo {
    height: 36px;
    transform: translateY(-5px)
}

.header-block-main .lang-item {
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    color: #fff
}

.header-block-main a svg {
    max-width: 145px
}

.header-block .nav {
    padding-top: 4px;
    box-sizing: border-box;
    max-width: 765px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center
}

.header-block .nav-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: max-content;
    z-index: 999
}

.header-block .nav-menu .item {
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    transition: all .3s ease-in-out
}

@media (min-width: 1079px) {
    .header-block .nav-menu .item:hover {
        color: #02c076;
        cursor: pointer
    }
}

.header-block .nav-menu .item_dropdown {
    display: flex;
    gap: 4px;
    flex-direction: row;
    position: relative;
    z-index: 9
}

.header-block .nav-menu .item_dropdown--block {
    position: absolute;
    top: calc(100% + 16px);
    left: -15px;
    min-width: max-content;
    padding: 8px 0;
    box-sizing: border-box;
    background: #29282A;
    border-radius: 8px;
    display: flex;
    flex-direction: column
}

.header-block .nav-menu .item_dropdown--block .item {
    color: #fff;
    padding: 10px 14px 10px 16px;
    box-sizing: border-box;
    transition: all .3s ease-in-out;
    display: flex;
    align-items: center;
    gap: 6px
}

.header-block .nav-menu .item_dropdown--block .item-new {
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    color: #29282a;
    background: #FF783E;
    border-radius: 4px;
    box-sizing: border-box;
    padding: 1px 4px
}

.header-block .nav-menu .item_dropdown--block .item:hover {
    cursor: pointer;
    background: #363537
}

.header-block .nav-menu .item_dropdown svg {
    transition: all .3s ease-in-out
}

.header-block .nav-menu .item_dropdown-open {
    color: #02c076
}

.header-block .nav-menu .item_dropdown-open svg {
    transform: rotate(180deg)
}

.header-block .nav-menu .item-colored {
    color: #02c076;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    height: 56px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    position: relative
}

.header-block .nav-menu .item-colored svg {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    left: calc(100% + 6px)
}

.header-block .nav-menu .dropdown-menu {
    display: flex;
    flex-direction: column;
    align-items: center
}

.header-block .nav-menu .dropdown-menu__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    padding: 8px 0 12px;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    color: #ffffffb8
}

.header-block .nav-menu .dropdown-menu__item-new {
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    color: #29282a;
    background: #FF783E;
    border-radius: 4px;
    box-sizing: border-box;
    padding: 1px 4px
}

.header-block .nav .buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px
}

.header-block .nav .buttons-item {
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 16px;
    box-sizing: border-box;
    transition: all .3s ease-in-out
}

.header-block .nav .buttons-item svg {
    transition: all .3s ease-in-out
}

.header-block .nav .buttons-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 32px #02c07633;
    cursor: pointer
}

.header-block .nav .buttons-item:hover svg {
    transform: rotate(180deg)
}

.header-block .nav .buttons-item_log-in {
    background: #363537;
    color: #02c076;
    gap: 8px
}

.header-block .nav .buttons-item_registration {
    background: #02C076;
    color: #1b1a1c
}

.header-block .lang {
    display: flex;
    gap: 11px;
    flex-direction: row;
    position: relative;
    z-index: 9;
    cursor: pointer
}

.header-block .lang span {
    height: 20px
}

.header-block .lang:hover .selected-lang-text {
    color: #02c076
}

.header-block .lang .selected-lang-text svg {
    transition: all .3s ease-in-out
}

.header-block .lang .selected-lang-text-open {
    color: #02c076 !important
}

.header-block .lang .selected-lang-text-open svg {
    transform: rotate(180deg)
}

@media (max-width: 1079px) {
    .header-block .lang {
        gap: 8px
    }
}

.header-block .lang--block {
    position: absolute;
    top: calc(100% + 16px);
    left: 0;
    min-width: 200px;
    padding: 8px 0;
    box-sizing: border-box;
    background: #29282A;
    box-shadow: 0 4px 12px #1b1a1ca3;
    border-radius: 8px;
    display: flex;
    flex-direction: column
}

.header-block .lang--block .item {
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    padding: 10px 0 10px 16px;
    box-sizing: border-box;
    transition: all .3s ease-in-out;
    display: flex;
    align-items: center;
    gap: 8px
}

.header-block .lang--block .item span {
    display: grid;
    place-items: center
}

.header-block .lang--block .item:hover {
    cursor: pointer;
    background: #363537
}

.header-block .lang .selected-lang-text {
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2px;
    transition: all .3s ease-in-out
}

.header-block .sign-up-button-wrap {
    position: relative;
}

@media (max-width: 1079px) {
    .header-block .lang .selected-lang-text {
        display: none
    }
}

.header-block .lang .selected-lang-text_mob {
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    display: none;
    text-transform: uppercase
}

@media (max-width: 1079px) {
    .header-block .lang .selected-lang-text_mob {
        display: flex
    }
}

.header-block_desktop {
    display: flex;
    position: relative
}

@media (max-width: 1079px) {
    .header-block_desktop {
        display: none
    }
}

.header-block_mob {
    display: none;
    height: 64px;
    padding: 0
}

.header-block_mob .menu-block {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    background: #1B1A1C;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.header-block_mob .menu-block .menu {
    padding: 12px;
    box-sizing: border-box;
    justify-content: flex-end
}

.header-block_mob .menu-block .menu .current-lang {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 9;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: #29282A;
    border-radius: 8px;
    gap: 11px;
    padding: 8px 16px;
    cursor: pointer;
}

.header-block_mob .menu-block .menu .current-lang span {
    height: 20px
}

.header-block_mob .menu-block .menu .current-lang-text {
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px
}

.header-block_mob .menu-block .menu .burger {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 9
}

.header-block_mob .menu-block .menu .burger-close {
    left: unset
}

.header-block_mob .menu-block .buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    box-sizing: border-box
}

.header-block_mob .menu-block .buttons-item {
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    padding: 0 16px;
    box-sizing: border-box;
    transition: all .3s ease-in-out
}

.header-block_mob .menu-block .buttons-item svg {
    transition: all .3s ease-in-out
}

.header-block_mob .menu-block .buttons-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 32px #02c07633;
    cursor: pointer
}

.header-block_mob .menu-block .buttons-item:hover svg {
    transform: rotate(180deg)
}

.header-block_mob .menu-block .buttons-item_log-in {
    background: #363537;
    color: #02c076;
    gap: 8px
}

.header-block_mob .menu-block .buttons-item_registration {
    background: #02C076;
    color: #1b1a1c
}

.header-block_mob .nav-menu {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0
}

@media (max-width: 1079px) {
    .header-block_mob .nav-menu {
        margin: auto
    }
}

.header-block_mob .nav-menu .item {
    box-sizing: border-box;
    min-height: 56px;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #fff;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-block_mob .nav-menu .item_dropdown {
    display: flex;
    flex-direction: column
}

.header-block_mob .nav-menu .item_dropdown .text {
    position: relative
}

.header-block_mob .nav-menu .item_dropdown .text svg {
    position: absolute;
    left: calc(100% + 4px);
    top: 0;
    bottom: 0;
    margin: auto 0
}

.header-block_mob .nav-menu .item_dropdown--block {
    position: relative;
    background: none;
    top: 0
}

.header-block_mob .nav-menu .item_dropdown--block .item {
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    color: #ffffffb8
}

.header-block_mob .nav-menu .item_dropdown-open svg {
    transition: all .3s ease-in-out;
    transform: rotate(180deg)
}

.header-block_desktop .header-block-main {
    display: flex;
}

.header-block_mob .header-block-main {
    display: none;
}

.header-block_mob .sign-up-button-wrap .sign-up-button {
    display: none;
}

.header-block_desktop .sign-up-button-wrap .sign-up-button {
    display: flex;
}

.header-block_desktop .mobile-menu {
    display: none;
}

.header-block_mob .mobile-menu {
    display: block;
}

@media (max-width: 1079px) {
    .header-block_mob {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between
    }
}

.header-block_mob .menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

@media (max-width: 1079px) {
    .header-block_mob .menu {
        justify-content: center;
        width: 100%
    }

    .header-block_mob .menu a svg {
        max-width: 138px;
        height: 30px
    }
}

.header-block_mob .menu .burger {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 9;
    cursor: pointer;
}

.header-block_mob .menu .mobile-logo {
    position: absolute;
    top: 15px;
    left: 63px
}

.header-block_mob .menu .lang {
    display: flex;
    gap: 11px;
    flex-direction: row;
    position: absolute;
    top: 12px;
    right: 20px;
    z-index: 9;
    height: 40px;
    align-items: center
}

@media (max-width: 1079px) {
    .header-block_mob .menu .lang {
        gap: 8px
    }

    .header-block_mob .menu .lang .flag {
        display: grid;
        place-items: center
    }

    .header-block_mob .menu .lang svg {
        height: 15.5px
    }
}

.header-block_mob .menu .lang--block {
    position: absolute;
    top: calc(100% + 16px);
    left: 0;
    min-width: 200px;
    padding: 8px 0;
    box-sizing: border-box;
    background: #29282A;
    border-radius: 8px;
    display: flex;
    flex-direction: column
}

.header-block_mob .menu .lang--block .item {
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    padding: 10px 0 10px 16px;
    box-sizing: border-box;
    transition: all .3s ease-in-out;
    display: flex;
    align-items: center;
    gap: 8px
}

.header-block_mob .menu .lang--block .item span {
    display: grid;
    place-items: center
}

.header-block_mob .menu .lang--block .item:hover {
    cursor: pointer;
    background: #363537
}

.header-block_mob .menu .lang .selected-lang-text {
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2px
}

@media (max-width: 1079px) {
    .header-block_mob .menu .lang .selected-lang-text {
        display: none
    }
}

.header-block_mob .menu .lang .selected-lang-text_mob {
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    display: none
}

@media (max-width: 1079px) {
    .header-block_mob .menu .lang .selected-lang-text_mob {
        display: flex
    }
}

.header-block_mob .menu .menu-block .nav-menu .item {
    display: flex;
    flex-direction: row;
    gap: 12px
}

.header-block_mob .menu .menu-block .nav-menu .item:hover {
    color: #fff
}

.header-block_mob .buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px
}

.header-block_mob .buttons--item {
    background: #363537;
    border-radius: 8px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: #02c076;
    gap: 4px;
    padding: 0 10px 0 12px;
    box-sizing: border-box
}

.header-block_mob .buttons--item svg path {
    fill: #02c076
}

.header-block_mob .buttons--item_profile {
    background: #02C076
}

.header-block .sign-up-button {
    display: flex;
    height: 40px;
    padding: 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    font-family: Inter, sans-serif;
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    border-radius: 8px;
    background: var(--gray-card, #29282A);
    -webkit-backdrop-filter: blur(13.5914087296px);
    backdrop-filter: blur(13.5914087296px);
    border: none;
    cursor: pointer
}

.header-block_mob .desktop-nav {
    display: none;
}

.header-block_desktop .desktop-nav {
    display: flex;
}

.header-block_desktop .mobile-menu-block {
    display: none;
}

@media (max-width: 1079px) {
    .header-block .sign-up-button {
        position: absolute;
        top: 12px;
        right: 12px
    }
}

.header-block .profile-button {
    display: flex;
    position: relative;
    height: 40px;
    padding: 16px 8px 16px 4px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    font-family: Inter, sans-serif;
    color: var(--white-100, var(--Color, #FFF));
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    border-radius: 8px;
    background: var(--gray-card, #29282A);
    -webkit-backdrop-filter: blur(13.5914087296px);
    backdrop-filter: blur(13.5914087296px);
    border: none;
    cursor: pointer;
    box-sizing: border-box
}

@media (max-width: 1079px) {
    .header-block .profile-button {
        position: absolute;
        top: 12px;
        right: 12px
    }
}

.header-block .profile-button svg {
    transition: all .3s
}

.header-block .profile-button-open>svg {
    transform: rotate(180deg)
}

.header-block .profile-button .profile-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--green, #02C076);
    color: var(--gray-card, #29282A);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    border-radius: 12px;
    text-transform: uppercase
}

.header-block .profile-button .profile-icon.blue {
    background: #217EFF
}

.header-block .profile-button .profile-dropdown--block {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 320px;
    box-sizing: border-box;
    background: #29282A;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px #1b1a1ca3
}

.header-block .motivation-banner {
    display: flex;
    flex-direction: column;
    position: absolute;
    padding: 12px 16px 16px;
    top: 84px;
    right: -16px;
    width: 296px;
    height: 182px;
    border-radius: 8px;
    background: var(--green, #02C076);
    box-sizing: border-box;
    z-index: 0
}

@media (max-width: 1150px) {
    .header-block .motivation-banner {
        right: 0
    }
}

@media (max-width: 1150px) and (max-width: 1079px) {
    .header-block .motivation-banner {
        right: 12px;
        top: 62px
    }
}

.header-block .motivation-banner>svg {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 32px;
    height: 32px;
    opacity: .8;
    cursor: pointer;
    z-index: 1
}

.header-block .motivation-banner>h3 {
    margin: 0 0 6px;
    width: 200px;
    color: var(--gray-card, #29282A);
    font-size: 20px;
    font-style: normal;
    font-weight: 900;
    line-height: 24px
}

.header-block .motivation-banner>p {
    margin: 0 0 14px;
    width: 125px;
    color: var(--gray-controls, #363537);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px
}

.header-block .motivation-banner>img {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 160px
}

.header-block .motivation-banner>button {
    display: inline-flex;
    height: 32px;
    width: max-content;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    border-radius: 6px;
    background: var(--gray-card, #29282A);
    box-sizing: border-box;
    border: none;
    color: var(--white-100, #FFF);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    cursor: pointer
}

.header-block .motivation-banner:before {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #02C076;
    top: -7px;
    right: 46px
}

@media (max-width: 1079px) {
    .header .profile-dropdown--block {
        width: 100%;
        height: 100%;
        background: #29282A;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 10
    }

    .header .profile-dropdown--block .close-icon {
        position: absolute;
        top: 12px;
        right: 12px;
        width: 32px;
        height: 32px;
        z-index: 100;
    }
}

.header.transparent .sign-up-button,
.header.transparent .profile-button {
    background: rgba(41, 40, 42, .4);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px)
}

@media print {
    .header {
        display: none !important
    }
}

.header-index {
    z-index: 1
}

.allow-cookies-message[data-v-5adac432] {
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    width: 100%;
    max-width: fit-content;
    margin: 0 auto;
    background: #FF783E;
    border-radius: 12px;
    z-index: 9999;
    box-sizing: border-box;
    padding: 8px 8px 8px 16px
}

@media (max-width: 1079px) {
    .allow-cookies-message[data-v-5adac432] {
        height: auto;
        padding: 8px 10px 8px 12px;
        max-width: 94%;
        bottom: 8px
    }
}

.allow-cookies-message .message[data-v-5adac432] {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px
}

.allow-cookies-message .message p[data-v-5adac432] {
    max-width: 395px;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    color: #fff;
    margin: 0
}

@media (max-width: 1079px) {
    .allow-cookies-message .message p[data-v-5adac432] {
        max-width: 100%
    }
}

.allow-cookies-message .message p a[data-v-5adac432] {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: #ffffff61;
    text-underline-offset: 5px;
    transition: all .3s ease-in-out
}

.allow-cookies-message .message p a[data-v-5adac432]:hover {
    color: #1f1e20
}

.allow-cookies-message .message .button[data-v-5adac432] {
    background: #29282A;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    line-height: 26px;
    text-align: center;
    color: #fff;
    padding: 7px 16px;
    min-width: fit-content;
    box-sizing: border-box;
    display: flex;
    place-items: center;
    transition: all .3s ease-in-out
}

.allow-cookies-message .message .button[data-v-5adac432]:hover {
    cursor: pointer;
    background: #1F1E20
}

@media (max-width: 1079px) {
    .allow-cookies-message .message .button[data-v-5adac432] {
        min-height: 44px
    }
}

.footer {
    width: 100%;
    background: #29282A;
    border-radius: 24px 24px 0 0;
    padding-top: 48px;
    padding-bottom: 87px
}

@media (max-width: 1089px) {
    .footer {
        padding-top: 32px;
        padding-bottom: 49px
    }
}

.footer .container {
    display: flex;
    flex-direction: column;
    gap: 32px
}

@media (max-width: 1089px) {
    .footer .container {
        padding: 0 32px;
        box-sizing: border-box
    }
}

.footer-info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start
}

@media (max-width: 1089px) {
    .footer-info {
        flex-direction: column;
        align-items: center;
        gap: 24px
    }
}

.footer_main {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 400px;
    width: 100%
}

@media (max-width: 1089px) {
    .footer_main {
        align-items: center
    }
}

.footer_main--text {
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #fff
}

@media (max-width: 1089px) {
    .footer_main--text {
        text-align: center
    }
}

.footer_links {
    display: flex;
    flex-direction: row;
    gap: 48px
}

@media (max-width: 1089px) {
    .footer_links {
        flex-direction: column;
        width: 100%;
        gap: 42px
    }
}

.footer_links-nav {
    display: flex;
    flex-direction: row;
    gap: 48px
}

@media (max-width: 1089px) {
    .footer_links-nav {
        width: 100%;
        justify-content: center;
        gap: 40px;
        order: 2
    }
}

.footer_links--item {
    display: flex;
    flex-direction: column;
    gap: 12px
}

@media (max-width: 1089px) {
    .footer_links--item {
        align-items: center
    }
}

.footer_links--item .title {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #ffffff61
}

.footer_links--item .link {
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    transition: all .3s ease-in-out
}

.footer_links--item .link:hover {
    cursor: pointer;
    color: #02c076
}

.footer_links--item .socials {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px
}

@media (max-width: 1089px) {
    .footer_links--item .socials {
        gap: 12px
    }
}

.footer_links--item .socials a {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    background: #02C076;
    border-radius: 8px;
    overflow: hidden
}

.footer-copyrights {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #ffffff61
}

@media (max-width: 1089px) {
    .footer-copyrights {
        flex-direction: column;
        gap: 20px
    }
}

.footer-copyrights_links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 28px
}

.footer-copyrights_links a {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #02c076;
    text-decoration: underline;
    text-decoration-color: #ffffff61;
    text-underline-offset: 5px;
    transition: all .3s ease-in-out
}

.footer-copyrights_links a:hover {
    text-decoration-color: #02c076
}

@media print {
    .footer {
        display: none !important
    }
}

.popup-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999999;
    background: rgba(27, 26, 28, .72);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px)
}

.popup-wrapper .popup {
    display: flex;
    flex-direction: column;
    background: #29282A;
    box-shadow: 0 4px 12px #1b1a1ca3;
    border-radius: 12px;
    margin: auto;
    padding: 24px;
    box-sizing: border-box;
    position: relative;
    max-width: 360px;
    width: 100%;
    height: auto
}

@media (max-width: 1079px) {
    .popup-wrapper .popup {
        height: 100%;
        max-width: 100%;
        background: #1B1A1C;
        display: flex
    }
}

.popup-wrapper .popup .popup-close {
    position: absolute;
    right: 8px;
    top: 8px
}

.popup-wrapper .popup .popup-close rect {
    fill: none
}

.popup-wrapper .popup .popup-close path {
    fill: #7a7a7b;
    transition: all .3s ease-in-out
}

@media (max-width: 1079px) {
    .popup-wrapper .popup .popup-close path {
        fill: #02c076
    }
}

.popup-wrapper .popup .popup-close:hover {
    cursor: pointer
}

.popup-wrapper .popup .popup-close:hover path {
    fill: #02c076
}

.popup-wrapper .popup .error-icon {
    position: absolute;
    top: 20px;
    right: 20px
}

@media (max-width: 1079px) {
    .popup-wrapper .popup .error-icon {
        position: inherit;
        top: 20px;
        right: 20px;
        width: 100%
    }
}

.popup-wrapper .popup .popup-content {
    align-self: center
}

.popup-wrapper .popup .popup-content .title {
    margin-bottom: 24px;
    font-family: Roboto, sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 24px;
    line-height: 24px;
    color: #fff
}

@media (max-width: 1079px) {
    .popup-wrapper .popup .popup-content .title {
        font-weight: 900;
        font-size: 36px;
        line-height: 38px;
        text-align: center;
        letter-spacing: -.02em
    }
}

.popup-wrapper .popup .popup-content .popup-image {
    display: flex;
    position: relative;
    margin: 0 auto 20px;
    width: 120px;
    height: 120px
}

.popup-wrapper .popup .popup-content .desc {
    margin-bottom: 32px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #fff
}

@media (max-width: 1079px) {
    .popup-wrapper .popup .popup-content .desc {
        margin-top: 16px;
        margin-bottom: 0
    }
}

.popup-wrapper .popup .main_button {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px
}

@media (max-width: 1079px) {
    .popup-wrapper .popup .main_button {
        max-width: 312px;
        position: fixed;
        bottom: 24px
    }
}

.popup-wrapper .popup .main_button.error {
    background: #FF783E
}

.main-layout {
    max-width: 100%;
    width: 100%;
    background: #1B1A1C;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden
}

@media (max-width: 1079px) {
    .main-layout {
        padding-top: 64px
    }
}

.main-layout form {
    width: 100%
}

.splide__arrow {
    -ms-flex-align: center;
    align-items: center;
    background: #ccc;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    display: -ms-flexbox;
    display: flex;
    height: 2em;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: .7;
    padding: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2em;
    z-index: 1
}

.splide__arrow svg {
    fill: #000;
    height: 1.2em;
    width: 1.2em
}

.splide__arrow:hover:not(:disabled) {
    opacity: .9
}

.splide__arrow:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: 3px
}

.splide.is-focus-in .splide__arrow:focus {
    outline: 3px solid #0bf;
    outline-offset: 3px
}

.splide__pagination__page {
    background: #ccc;
    border: 0;
    border-radius: 50%;
    display: inline-block;
    height: 8px;
    margin: 3px;
    opacity: .7;
    padding: 0;
    position: relative;
    transition: transform .2s linear;
    width: 8px
}

.splide__pagination__page.is-active {
    background: #fff;
    transform: scale(1.4);
    z-index: 1
}

.splide__pagination__page:hover {
    cursor: pointer;
    opacity: .9
}

.splide__pagination__page:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: 3px
}

.splide.is-focus-in .splide__pagination__page:focus {
    outline: 3px solid #0bf;
    outline-offset: 3px
}

@supports (outline-offset:-3px) {
    .splide__slide:focus-visible {
        outline: 3px solid #0bf;
        outline-offset: -3px
    }
}

@media screen and (-ms-high-contrast:none) {
    .splide__slide:focus-visible {
        border: 3px solid #0bf
    }
}

@supports (outline-offset:-3px) {
    .splide.is-focus-in .splide__slide:focus {
        outline: 3px solid #0bf;
        outline-offset: -3px
    }
}

@media screen and (-ms-high-contrast:none) {
    .splide.is-focus-in .splide__slide:focus {
        border: 3px solid #0bf
    }

    .splide.is-focus-in .splide__track>.splide__list>.splide__slide:focus {
        border-color: #0bf
    }
}

.splide__toggle:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: 3px
}

.splide.is-focus-in .splide__toggle:focus {
    outline: 3px solid #0bf;
    outline-offset: 3px
}

.splide__track--nav>.splide__list>.splide__slide {
    border: 3px solid transparent;
    cursor: pointer
}

.splide__track--nav>.splide__list>.splide__slide.is-active {
    border: 3px solid #000
}

.splide__track--nav>.splide__list>.splide__slide {
    border: 3px solid transparent;
    cursor: pointer;
    opacity: .7
}

.splide__track--nav>.splide__list>.splide__slide.is-active {
    border: 3px solid #00bfff;
    opacity: 1
}

.splide__arrow svg {
    fill: #00bfff;
    height: 2.5em;
    transition: fill .2s linear;
    width: 2.5em
}

.splide__arrow:hover:not(:disabled) svg {
    fill: #66d9ff
}

.splide__arrow:focus-visible {
    outline: 3px solid #00bfff;
    outline-offset: 3px
}

.splide.is-focus-in .splide__arrow:focus {
    outline: 3px solid #00bfff;
    outline-offset: 3px
}

.splide__pagination {
    bottom: .5em;
    left: 0;
    padding: 0 1em;
    position: absolute;
    right: 0;
    z-index: 1
}

.splide__pagination__page {
    background: #ccc;
    border: 0;
    border-radius: 50%;
    display: inline-block;
    height: 10px;
    margin: 3px;
    padding: 0;
    position: relative;
    transition: background-color .2s linear, transform .2s linear;
    width: 10px
}

.splide__pagination__page.is-active {
    background: #00bfff;
    transform: scale(1.4);
    z-index: 1
}

.splide__pagination__page:hover {
    background: #66d9ff;
    cursor: pointer;
    opacity: .9
}

.splide__pagination__page:focus-visible {
    outline: 3px solid #00bfff;
    outline-offset: 3px
}

.splide.is-focus-in .splide__pagination__page:focus {
    outline: 3px solid #00bfff;
    outline-offset: 3px
}

.splide__spinner {
    animation: splide-loading 1s linear infinite;
    border: 2px solid #00bfff;
    border-left-color: transparent;
    border-radius: 50%;
    bottom: 0;
    contain: strict;
    display: inline-block;
    height: 20px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 20px
}

.splide__slide {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

@supports (outline-offset:-3px) {
    .splide__slide:focus-visible {
        outline: 3px solid #00bfff;
        outline-offset: -3px
    }
}

@media screen and (-ms-high-contrast:none) {
    .splide__slide:focus-visible {
        border: 3px solid #00bfff
    }
}

@supports (outline-offset:-3px) {
    .splide.is-focus-in .splide__slide:focus {
        outline: 3px solid #00bfff;
        outline-offset: -3px
    }
}

@media screen and (-ms-high-contrast:none) {
    .splide.is-focus-in .splide__slide:focus {
        border: 3px solid #00bfff
    }

    .splide.is-focus-in .splide__track>.splide__list>.splide__slide:focus {
        border-color: #00bfff
    }
}

.splide__toggle:focus-visible {
    outline: 3px solid #00bfff;
    outline-offset: 3px
}

.splide.is-focus-in .splide__toggle:focus {
    outline: 3px solid #00bfff;
    outline-offset: 3px
}

.splide__pagination--ttb {
    bottom: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    left: auto;
    padding: 1em 0;
    right: .5em;
    top: 0
}

.splide__track--nav>.splide__list>.splide__slide {
    border: 3px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    opacity: .7
}

.splide__track--nav>.splide__list>.splide__slide.is-active {
    border: 3px solid #20b2aa;
    opacity: 1
}

.splide__arrows--ttb .splide__arrow {
    left: 50%;
    transform: translate(-50%)
}

.splide__arrows--ttb .splide__arrow--prev {
    top: 1em
}

.splide__arrows--ttb .splide__arrow--prev svg {
    transform: rotate(-90deg)
}

.splide__arrows--ttb .splide__arrow--next {
    bottom: 1em;
    top: auto
}

.splide__arrows--ttb .splide__arrow--next svg {
    transform: rotate(90deg)
}

.splide__pagination--ttb {
    bottom: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    left: auto;
    padding: 1em 0;
    right: 1em;
    top: 0
}

.splide__pagination--ttb .splide__pagination__page {
    height: 20px;
    width: 5px
}

.splide__arrow {
    -ms-flex-align: center;
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 0;
    cursor: pointer;
    display: -ms-flexbox;
    display: flex;
    height: 2.5em;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.5em;
    z-index: 1
}

.splide__arrow svg {
    fill: #20b2aa;
    height: 2.5em;
    transition: fill .2s linear;
    width: 2.5em
}

.splide__arrow:hover:not(:disabled) svg {
    fill: #57e1d9
}

.splide__arrow:disabled {
    opacity: .3
}

.splide__arrow:focus-visible {
    outline: 3px solid #20b2aa;
    outline-offset: 3px
}

.splide__arrow--prev {
    left: 1em
}

.splide__arrow--prev svg {
    transform: scaleX(-1)
}

.splide__arrow--next {
    right: 1em
}

.splide.is-focus-in .splide__arrow:focus {
    outline: 3px solid #20b2aa;
    outline-offset: 3px
}

.splide__pagination {
    bottom: 1em;
    left: 0;
    padding: 0 1em;
    position: absolute;
    right: 0;
    z-index: 1
}

.splide__pagination__page {
    background: #ccc;
    border: 0;
    border-radius: 2.5px;
    display: inline-block;
    height: 5px;
    margin: 3px;
    padding: 0;
    position: relative;
    transition: background-color .2s linear;
    width: 20px
}

.splide__pagination__page.is-active {
    background: #20b2aa;
    z-index: 1
}

.splide__pagination__page:hover {
    background: #57e1d9;
    cursor: pointer;
    opacity: .9
}

.splide__pagination__page:focus-visible {
    outline: 3px solid #20b2aa;
    outline-offset: 3px
}

.splide.is-focus-in .splide__pagination__page:focus {
    outline: 3px solid #20b2aa;
    outline-offset: 3px
}

.splide__slide {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    border-radius: 4px
}

.splide__slide:focus {
    outline: 0
}

@supports (outline-offset:-3px) {
    .splide__slide:focus-visible {
        outline: 3px solid #20b2aa;
        outline-offset: -3px
    }
}

@media screen and (-ms-high-contrast:none) {
    .splide__slide:focus-visible {
        border: 3px solid #20b2aa
    }
}

@supports (outline-offset:-3px) {
    .splide.is-focus-in .splide__slide:focus {
        outline: 3px solid #20b2aa;
        outline-offset: -3px
    }
}

@media screen and (-ms-high-contrast:none) {
    .splide.is-focus-in .splide__slide:focus {
        border: 3px solid #20b2aa
    }

    .splide.is-focus-in .splide__track>.splide__list>.splide__slide:focus {
        border-color: #20b2aa
    }
}

.splide__spinner {
    animation: splide-loading 1s linear infinite;
    border: 2px solid #20b2aa;
    border-left-color: transparent;
    border-radius: 50%;
    bottom: 0;
    contain: strict;
    display: inline-block;
    height: 20px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 20px
}

.splide__progress__bar {
    background: #ccc;
    height: 3px
}

.splide__toggle {
    cursor: pointer
}

.splide__toggle:focus-visible {
    outline: 3px solid #20b2aa;
    outline-offset: 3px
}

.splide.is-focus-in .splide__toggle:focus {
    outline: 3px solid #20b2aa;
    outline-offset: 3px
}

.splide__arrows--rtl .splide__arrow--prev {
    left: auto;
    right: 1em
}

.splide__arrows--rtl .splide__arrow--prev svg {
    transform: scaleX(1)
}

.splide__arrows--rtl .splide__arrow--next {
    left: 1em;
    right: auto
}

.splide__arrows--rtl .splide__arrow--next svg {
    transform: scaleX(-1)
}

.splide__slider>.splide__arrows .splide__arrow--prev {
    left: -2.5em
}

.splide__slider>.splide__arrows .splide__arrow--next {
    right: -2.5em
}

.splide {
    padding: 3em
}

@keyframes splide-loading {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(1turn)
    }
}

.splide__track--draggable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.splide__track--fade>.splide__list>.splide__slide {
    margin: 0 !important;
    opacity: 0;
    z-index: 0
}

.splide__track--fade>.splide__list>.splide__slide.is-active {
    opacity: 1;
    z-index: 1
}

.splide--rtl {
    direction: rtl
}

.splide__track--ttb>.splide__list {
    display: block
}

.splide__container {
    box-sizing: border-box;
    position: relative
}

.splide__list {
    backface-visibility: hidden;
    display: -ms-flexbox;
    display: flex;
    margin: 0 !important;
    padding: 0 !important
}

.splide.is-initialized:not(.is-active) .splide__list {
    display: block
}

.splide__pagination {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0;
    pointer-events: none
}

.splide__pagination li {
    display: inline-block;
    line-height: 1;
    list-style-type: none;
    margin: 0;
    pointer-events: auto
}

.splide:not(.is-overflow) .splide__pagination {
    display: none
}

.splide__progress__bar {
    width: 0
}

.splide {
    position: relative;
    visibility: hidden
}

.splide.is-initialized,
.splide.is-rendered {
    visibility: visible
}

.splide__slide {
    backface-visibility: hidden;
    box-sizing: border-box;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    list-style-type: none !important;
    margin: 0;
    position: relative
}

.splide__slide img {
    vertical-align: bottom
}

.splide__spinner {
    animation: splide-loading 1s linear infinite;
    border: 2px solid #999;
    border-left-color: transparent;
    border-radius: 50%;
    bottom: 0;
    contain: strict;
    display: inline-block;
    height: 20px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 20px
}

.splide__sr {
    clip: rect(0 0 0 0);
    border: 0;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px
}

.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
    display: none
}

.splide__toggle.is-active .splide__toggle__pause {
    display: inline
}

.splide__track {
    overflow: hidden;
    position: relative;
    z-index: 0
}

.partner-list_slider {
    width: 100%;
    position: relative;
    max-width: 1440px
}

@media (max-width: 1079px) {
    .partner-list_slider {
        max-width: 100%
    }
}

.partner-list_slider_block {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.partner-list_slider .splide {
    padding: 0
}

.partner-list_slider:before,
.partner-list_slider:after {
    background: linear-gradient(to right, #1B1A1C 0%, rgba(27, 26, 28, 0) 114.64%);
    content: "";
    height: 120px;
    position: absolute;
    width: 200px;
    z-index: 2
}

@media (max-width: 1079px) {

    .partner-list_slider:before,
    .partner-list_slider:after {
        width: 75px;
        height: 75px
    }
}

.partner-list_slider:after {
    right: 0;
    top: 0;
    transform: rotate(180deg)
}

.partner-list_slider:before {
    left: 0;
    top: 0
}

.partner-list_slider .slide {
    height: 120px;
    width: 320px;
    background: rgba(255, 255, 255, .03);
    border-radius: 12px;
    display: grid;
    place-items: center;
    filter: grayscale(100%);
    transition: all .3s ease-in-out
}

@media (max-width: 1079px) {
    .partner-list_slider .slide {
        width: 200px;
        height: 75px;
        filter: grayscale(0)
    }
}

.partner-list_slider .slide img {
    max-width: 200px
}

@media (max-width: 1079px) {
    .partner-list_slider .slide img {
        width: 137px
    }
}

@media (max-width: 1079px) {
    .partner-list_slider .slide svg {
        width: 137px
    }
}

.partner-list_slider .slide:hover {
    filter: grayscale(0);
    cursor: pointer
}

.partner-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%
}

@media (max-width: 1079px) {
    .partner-list {
        margin-bottom: 48px
    }
}

.partner-list_header {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 24px;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap
}

.partner-list_header .h1 br {
    display: none
}

@media (max-width: 1079px) {
    .partner-list_header {
        margin-bottom: 24px
    }

    .partner-list_header .h1 {
        width: 100%
    }

    .partner-list_header .h1 br {
        display: block
    }
}

.partner-list_header .main_button {
    width: unset;
    padding: 12px;
    box-sizing: border-box
}

@media (max-width: 1079px) {
    .partner-list_header .main_button {
        display: none
    }
}

.partner-list .button_block {
    padding: 0 24px;
    box-sizing: border-box;
    width: 100%;
    display: none;
    margin-bottom: 48px;
    z-index: 999;
    position: sticky;
    bottom: 20px
}

@media (max-width: 1079px) {
    .partner-list .button_block {
        display: flex
    }
}

.partner-list .button_block .button-mob {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #29282a;
    padding: 18px 0;
    box-sizing: border-box;
    width: 100%;
    background: #02C076;
    border-radius: 8px
}

@media (max-width: 1079px) {
    .partner-list .technical-partners {
        margin-bottom: 48px
    }
}

.partner-list .technical-partners_block {
    display: flex;
    flex-direction: row;
    max-width: 720px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px
}

@media (max-width: 1079px) {
    .partner-list .technical-partners_block {
        gap: 16px 24px
    }
}

.partner-list .technical-partners_block .item {
    min-width: 180px;
    min-height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    box-sizing: border-box;
    border-radius: 8px
}

@media (max-width: 1079px) {
    .partner-list .technical-partners_block .item {
        min-width: 118px
    }
}

.partner-list .technical-partners_block .item svg path {
    transition: all .3s ease-in-out
}

.partner-list .technical-partners_block .item:hover {
    cursor: pointer;
    background: #1F1E20
}

.partner-list_block {
    margin-top: 40px;
    margin-bottom: 120px
}

@media (max-width: 1079px) {
    .partner-list_block {
        margin: 24px 0;
        max-width: 100%
    }
}

@media (min-width: 1079px) {
    .partner-list_block:hover .slide-track {
        animation-play-state: paused
    }
}

@media (max-width: 1079px) {
    .partner-list_block:active .slide-track {
        animation-play-state: paused
    }
}

.partner-list_block .main_button {
    display: none
}

@media (max-width: 1079px) {
    .partner-list_block .main_button {
        display: flex;
        max-width: 93%;
        margin: 24px auto 0
    }
}

.partner-list .main_button {
    padding: 12px 24px;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 24px;
    height: 48px
}

.partner-list .technical-partners {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 120px
}

@media (max-width: 1079px) {
    .partner-list .technical-partners {
        margin-bottom: 0
    }
}

.partner-list .technical-partners .title {
    font-family: Roboto, sans-serif;
    font-weight: 900;
    font-size: 24px;
    line-height: 28px;
    color: #fff
}

.partner-list .technical-partners_block {
    display: flex;
    flex-direction: row;
    max-width: 840px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px
}

@media (max-width: 1079px) {
    .partner-list .technical-partners_block {
        max-width: 335px;
        gap: 16px 24px
    }
}

.partner-list .technical-partners_block .item {
    min-width: 180px;
    min-height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    box-sizing: border-box;
    border-radius: 8px;
    filter: grayscale(100%);
    transition: all .3s ease-in-out
}

@media (max-width: 1079px) {
    .partner-list .technical-partners_block .item {
        width: 100%;
        min-width: 1px;
        max-width: 142px
    }
}

.partner-list .technical-partners_block .item img {
    padding: 0 12px
}

.partner-list .technical-partners_block .item svg path {
    transition: all .3s ease-in-out;
    fill-opacity: 38%
}

.partner-list .technical-partners_block .item:hover {
    cursor: pointer;
    background: #1F1E20;
    filter: grayscale(0)
}

.partner-list .technical-partners_block .item:hover svg path {
    fill-opacity: 1
}

.partner-list_block {
    margin-bottom: 120px
}

@media (max-width: 1079px) {
    .partner-list_block {
        margin-bottom: 24px;
        max-width: 100%
    }
}

@keyframes scroll {
    0% {
        transform: translate(0)
    }

    to {
        transform: translate(-2035.2px)
    }
}

@media (max-width: 1079px) {
    .partner-list_block {
        display: flex;
        flex-direction: column;
        align-items: center
    }

    @keyframes scroll {
        0% {
            transform: translate(0)
        }

        to {
            transform: translate(-1272px)
        }
    }
}

.partner-list_block .slider {
    background: none;
    height: 120px;
    margin: auto;
    overflow: hidden;
    position: relative;
    max-width: 1440px
}

@media (max-width: 1079px) {
    .partner-list_block .slider {
        max-width: 100%;
        height: 75px
    }
}

.partner-list_block .slider:before,
.partner-list_block .slider:after {
    background: linear-gradient(to right, #1B1A1C 0%, rgba(27, 26, 28, 0) 114.64%);
    content: "";
    height: 120px;
    position: absolute;
    width: 200px;
    z-index: 2
}

@media (max-width: 1079px) {

    .partner-list_block .slider:before,
    .partner-list_block .slider:after {
        width: 75px;
        height: 75px
    }
}

.partner-list_block .slider:after {
    right: 0;
    top: 0;
    transform: rotate(180deg)
}

.partner-list_block .slider:before {
    left: 0;
    top: 0
}

.partner-list_block .slider .slide-track {
    animation: scroll 30s linear infinite;
    display: flex;
    gap: 20px;
    width: 4051.2px
}

@media (max-width: 1079px) {
    .partner-list_block .slider .slide-track {
        gap: 12px;
        width: 2532px
    }
}

.partner-list_block .slider .slide {
    height: 120px;
    width: 320px;
    background: rgba(255, 255, 255, .03);
    border-radius: 12px;
    display: grid;
    place-items: center;
    filter: grayscale(100%);
    transition: all .3s ease-in-out
}

@media (max-width: 1079px) {
    .partner-list_block .slider .slide {
        width: 200px;
        height: 75px
    }
}

.partner-list_block .slider .slide img {
    max-width: 200px
}

@media (max-width: 1079px) {
    .partner-list_block .slider .slide img {
        width: 137px
    }
}

@media (max-width: 1079px) {
    .partner-list_block .slider .slide svg {
        width: 137px
    }
}

.partner-list_block .slider .slide:hover {
    filter: grayscale(0);
    cursor: pointer
}

.partner-list_block:hover .slide-track,
.partner-list_block:active .slide-track {
    animation-play-state: paused
}

.video-banner {
    width: 100%;
    background: rgba(255, 255, 255, .04);
    border-radius: 20px;
    padding: 32px 40px 64px;
    position: relative;
    height: 480px;
    overflow: hidden;
    box-sizing: border-box;
    margin-bottom: 120px
}

.video-banner_block {
    width: 100%
}

@media (max-width: 1079px) {
    .video-banner {
        height: 600px;
        margin-bottom: 64px;
        padding: 12px 20px 64px
    }
}

.video-banner_info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 3;
    height: 100%
}

@media (max-width: 1079px) {
    .video-banner_info {
        align-items: center;
        justify-content: flex-start
    }
}

.video-banner_info-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

@media (max-width: 1079px) {
    .video-banner_info-block {
        align-items: center
    }
}

.video-banner_info .sticky-text {
    padding: 1px 4px;
    box-sizing: border-box;
    background: #FF783E;
    border-radius: 4px;
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    color: #fff;
    margin-bottom: 20px
}

@media (max-width: 1079px) {
    .video-banner_info .sticky-text {
        margin-bottom: 12px
    }
}

.video-banner_info .text {
    font-weight: 900;
    font-size: 56px;
    line-height: 62px;
    color: #fff;
    margin-bottom: 24px
}

@media (max-width: 1079px) {
    .video-banner_info .text {
        font-weight: 900;
        font-size: 36px;
        line-height: 38px;
        text-align: center;
        color: #fff;
        margin-bottom: 16px
    }

    .video-banner_info .text br {
        display: none
    }
}

.video-banner_info .text span {
    color: #02c076
}

.video-banner_info .desc {
    max-width: 398px;
    width: 100%;
    font-weight: 300;
    font-size: 20px;
    line-height: 28px;
    color: #fff
}

@media (max-width: 1079px) {
    .video-banner_info .desc {
        font-weight: 300;
        font-size: 14px;
        line-height: 20px;
        text-align: center;
        color: #fff;
        margin-bottom: 24px
    }
}

.video-banner_buttons a img {
    max-width: 162px
}

@media (max-width: 1079px) {
    .video-banner_buttons a img {
        height: 40px;
        max-width: 135px
    }
}

.video-banner_content-phone {
    position: absolute;
    bottom: 0;
    right: 10px;
    max-height: 480px
}

.video-banner_content-phone video {
    height: 100%
}

@media (max-width: 1079px) {
    .video-banner_content-phone video {
        display: none
    }
}

.video-banner_content-phone-mobile {
    display: none;
    position: absolute;
    z-index: 4;
    bottom: -253px;
    left: 0;
    right: 0;
    margin: 0 auto
}

@media (max-width: 1079px) {
    .video-banner_content-phone-mobile {
        display: block
    }
}

.video-banner_content-bg {
    position: absolute;
    top: -26px;
    right: -195px
}

@media (max-width: 1079px) {
    .video-banner_content-bg {
        top: 214px
    }
}

.features-plates {
    margin: 142px 0 120px;
    width: 100%
}

@media (max-width: 1079px) {
    .features-plates {
        margin: 40px 0 48px
    }
}

.features-plates_block {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 4px;
    border-radius: 20px;
    overflow: hidden
}

@media (max-width: 1079px) {
    .features-plates_block {
        flex-direction: column
    }
}

.features-plates--item {
    background: rgba(255, 255, 255, .04);
    padding: 20px 24px 24px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%
}

.features-plates--item-content {
    max-width: 221px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.features-plates--item .title {
    font-family: Roboto, sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 24px;
    line-height: 28px;
    color: #fff
}

.features-plates--item .desc {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #ffffff61
}

.input-select {
    display: flex;
    height: 60px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    justify-content: center;
    gap: 2px;
    border-radius: 8px
}

@media (max-width: 1079px) {
    .input-select {
        height: 60px;
        width: 100%
    }

    .input-select_opened {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999;
        width: 100%
    }
}

.input-select:focus-within {
    box-shadow: 0 0 0 2px #02c076
}

.input-select:focus-within .input-label {
    color: #02c076 !important
}

.input-select.error:focus-within {
    box-shadow: 0 0 0 2px #ff783e
}

.input-select.error .input-label {
    color: #ff783e !important
}

.input-select.error .text-input .error-icon {
    display: flex !important
}

.input-select.has-select .text-input {
    max-width: 294px;
    position: relative
}

.input-select.has-select .text-input .icon {
    top: 16px;
    bottom: 0;
    margin: auto 0;
    display: grid;
    place-items: center
}

@media (max-width: 1079px) {
    .input-select.has-select .text-input {
        max-width: 70%
    }
}

.input-select.has-select .select-input {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between
}

.input-select.has-select .select-input .selected-item {
    transition: all .3s ease-in-out
}

.input-select.has-select .select-input .selected-item_img {
    max-width: 28px;
    border-radius: 50%;
    overflow: hidden
}

.input-select.has-select .select-input_block {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px
}

.input-select.has-select .select-input_coin {
    display: flex;
    flex-direction: column;
    gap: 2px
}

.input-select.has-select .select-input_name {
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    cursor: pointer;
    overflow: hidden
}

.input-select.has-select .select-input_network {
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
    color: #ffffff61
}

.input-select.has-select .select-input_arrow {
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center
}

.input-select.has-select .select-input .input-label {
    position: relative;
    top: 0
}

.input-select.has-select .select-input:hover {
    cursor: pointer
}

.input-select.has-select .select-input:hover .selected-item {
    color: #02c076
}

.input-select .select-input,
.input-select .text-input {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    transition: all .6s ease-in-out
}

.input-select .select-input:hover,
.input-select .text-input:hover {
    cursor: pointer;
    background: linear-gradient(0deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .04)), #363537
}

.input-select .select-input:hover .loader,
.input-select .text-input:hover .loader {
    background-color: #3e3d3f
}

.input-select .select-input {
    max-width: 136px;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
    padding: 12px 12px 12px 16px;
    background: #363537;
    border-radius: 0 8px 8px 0
}

@media (max-width: 1079px) {
    .input-select .select-input {
        padding: 12px 6px 12px 12px;
        max-width: 120px
    }
}

.input-select .select-input.open .selected-item {
    color: #02c076
}

.input-select .select-input.open svg {
    transform: rotate(0)
}

.input-select .select-input .selected-item {
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    cursor: pointer;
    overflow: hidden
}

.input-select .text-input {
    position: relative;
    width: 100%;
    background: #363537;
    padding: 10px 12px;
    box-sizing: border-box;
    overflow: hidden;
    border-radius: 8px 0 0 8px
}

.input-select .text-input .loader {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 3;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: rgb(54, 53, 55);
    display: grid;
    place-items: center
}

.input-select .text-input .loader svg {
    width: 80%
}

@media (max-width: 1079px) {
    .input-select .text-input .loader {
        background-size: contain
    }
}

.input-select .text-input .loader:hover {
    background: linear-gradient(0deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .04)), rgb(54, 53, 55)
}

.input-select .text-input .error-icon {
    position: absolute;
    width: 50px;
    z-index: 20;
    right: 8px;
    height: 100%;
    align-items: center;
    justify-content: center;
    display: none
}

.input-select .text-input .error-icon:hover .error-tooltip {
    display: block
}

.input-select .text-input .error-icon .error-tooltip {
    position: absolute;
    background: #ff783e;
    top: -12px;
    right: 0;
    padding: 5px;
    box-sizing: border-box;
    white-space: nowrap;
    border-radius: 4px;
    color: #fff;
    font-size: 12px;
    display: none
}

.input-select .text-input .input-label {
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
    color: #ffffff61;
    position: absolute;
    top: 8px;
    max-width: calc(100% - 32px);
    overflow: hidden;
    text-overflow: ellipsis;
    box-sizing: border-box;
    display: block;
    white-space: nowrap
}

.input-select .text-input input {
    border: none;
    outline: none;
    background: transparent;
    box-shadow: none;
    font-size: 22px;
    line-height: 24px;
    font-weight: 600;
    color: #fff;
    width: 100%;
    z-index: 2;
    position: absolute;
    left: 0;
    padding: 0 12px;
    height: 24px;
    box-sizing: border-box;
    caret-color: #02c076;
    font-family: Inter, sans-serif
}

.input-select .text-input input.has-label {
    transform: translateY(8px)
}

.input-select .text-input input::-webkit-outer-spin-button,
.input-select .text-input input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0
}

.input-select .text-input input[type=number] {
    -moz-appearance: textfield
}

.input-select .text-input input::placeholder {
    color: #1b1a1c52;
    font-weight: 500;
    font-size: 16px
}

.input-select .text-input input+.input-label {
    font-size: 16px;
    top: 24px;
    color: #1b1a1c52;
    transition: color .3s linear, top .3s linear, font-size .3s linear;
    z-index: 1;
    line-height: 16px;
    font-weight: 500
}

@media (max-width: 1079px) {
    .input-select .text-input input+.input-label {
        top: 20px
    }
}

.input-select .text-input input:focus:not([readonly])+.input-label,
.input-select .text-input input.focus+.input-label {
    color: #ffffff61;
    font-size: 12px;
    line-height: 16px;
    top: 10px
}

.input-select .items {
    border-radius: 8px;
    display: block;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 99999999;
    box-shadow: 0 4px 12px #1b1a1ca3
}

@media (max-width: 1079px) {
    .input-select .items {
        border-radius: 0;
        height: 100vh;
        background: #1B1A1C;
        position: fixed
    }
}

.input-select .items-header {
    display: none
}

@media (max-width: 1079px) {
    .input-select .items-header {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 12px 12px 12px 20px;
        box-sizing: border-box
    }
}

.input-select .items-header .text {
    font-weight: 900;
    font-size: 28px;
    line-height: 30px;
    color: #fff
}

.input-select .items-header .text span {
    text-transform: lowercase
}

.input-select .items-header svg {
    cursor: pointer
}

.input-select .items .input-search {
    width: 100%;
    position: relative;
    border-radius: 8px;
    background: #363537
}

@media (max-width: 1079px) {
    .input-select .items .input-search {
        background: none
    }

    .input-select .items .input-search_block {
        padding: 0 12px;
        box-sizing: border-box
    }
}

.input-select .items .input-search:focus-within {
    box-shadow: 0 0 0 2px #02c076
}

.input-select .items .input-search .input-search_icon {
    position: absolute;
    top: 15px;
    left: 15px
}

@media (max-width: 1079px) {
    .input-select .items .input-search .input-search_icon {
        left: 12px
    }
}

.input-select .items .input-search .input-search_close {
    position: absolute;
    right: 14px;
    top: 15px;
    cursor: pointer
}

.input-select .items .input-search .input-search_close path {
    transition: all .3s ease-in-out
}

.input-select .items .input-search .input-search_close:hover path {
    fill: #02c076
}

.input-select .items .input-search input {
    background: #363537;
    border-radius: 8px;
    width: 100%;
    height: 64px;
    box-sizing: border-box;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    padding: 16px 55px 16px 58px;
    display: block;
    outline: none;
    border: none;
    caret-color: #02c076
}

.input-select .items .input-search input::placeholder {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #ffffff61
}

.input-select .items .input-search input:-ms-input-placeholder {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #ffffff61
}

.input-select .items .input-search input::-ms-input-placeholder {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #ffffff61
}

@media (max-width: 1079px) {
    .input-select .items .input-search input {
        height: 60px;
        font-weight: 600;
        font-size: 22px;
        line-height: 24px;
        padding: 18px 0 18px 48px;
        background: #29282A
    }
}

.input-select .items .input-search input:focus {
    outline: none
}

.input-select .items--list {
    margin-top: 6px;
    background: #363537;
    box-shadow: 0 4px 12px #1b1a1ca3;
    border-radius: 8px;
    padding-top: 6px;
    overflow-y: auto;
    overflow-x: hidden
}

@media (max-width: 1079px) {
    .input-select .items--list {
        height: calc(100vh - 210px);
        background: none
    }
}

.input-select .items .search {
    height: 64px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: 0 20px
}

.input-select .items .search svg {
    margin-right: 20px
}

.input-select .items .search input {
    border: none;
    background: transparent;
    outline: none;
    box-shadow: none;
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    width: 100%
}

.input-select .items .search input::placeholder {
    color: #ffffff61
}

.input-select .items .coins-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 450px;
    -ms-overflow-style: none;
    scrollbar-width: none
}

@media (max-width: 1079px) {
    .input-select .items .coins-list {
        max-height: 100%
    }

    .input-select .items .coins-list+body {
        overflow: hidden
    }
}

.input-select .items .coins-list::-webkit-scrollbar {
    display: none
}

.input-select .items .coins-list_selected .image {
    position: relative;
    left: -2px
}

.input-select .items .coins-list_selected .coins-list_item-block-info {
    gap: 10px
}

.input-select .items .coins-list_selected .arrow {
    transition: all .2s ease-in-out
}

.input-select .items .coins-list_selected-active {
    background: rgba(27, 26, 28, .03)
}

.input-select .items .coins-list_selected-active .arrow {
    transform: rotate(-180deg)
}

.input-select .items .coins-list_selected-active .arrow svg path {
    fill: #02c076;
    fill-opacity: 1
}

.input-select .items .coins-list_header {
    margin-top: 12px;
    margin-left: 20px;
    font-weight: 500;
    font-size: 12px;
    line-height: 20px;
    color: #ffffff61
}

.input-select .items .coins-list_header-selected {
    margin-top: 0
}

.input-select .items .coins-list_item {
    font-weight: 600;
    font-size: 16px;
    color: #1b1a1c;
    box-sizing: border-box;
    cursor: pointer
}

.input-select .items .coins-list_item-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 16px;
    box-sizing: border-box;
    transition: all .4s ease-in-out
}

.input-select .items .coins-list_item-block:hover {
    background: rgba(255, 255, 255, .04)
}

.input-select .items .coins-list_item-block-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px
}

.input-select .items .coins-list_item-block-info .image {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border, outline .2s ease-in-out;
    border-radius: 50px;
    overflow: hidden;
    min-width: 28px
}

.input-select .items .coins-list_item-block-info .image-active {
    border: 2px solid rgba(255, 255, 255, .04);
    box-shadow: 0 0 0 2px #02c076
}

.input-select .items .coins-list_item-block-info .image img {
    max-width: 28px
}

.input-select .items .coins-list_item-block-info .info {
    display: flex;
    flex-direction: column;
    gap: 2px
}

.input-select .items .coins-list_item-block-info .info .coin-name {
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    color: #fff
}

.input-select .items .coins-list_item-block-info .info .coin-name span {
    margin-left: 2px;
    font-weight: 400;
    color: #ffffff61
}

.input-select .items .coins-list_item-block-info .info .networks {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap
}

.input-select .items .coins-list_item-block-info .info .networks .item {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #ffffff61;
    margin-right: 4px
}

.input-select .items .coins-list_item-block-info .info .networks .item-active {
    color: #02c076
}

.input-select .items .coins-list_item-block-info .info .networks .item:after {
    content: " /";
    color: #ffffff1f
}

.input-select .items .coins-list_item-block-info .info .networks .item:last-child:after {
    content: ""
}

.input-select .items .coins-list_item-block .arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s ease-in-out
}

.input-select .items .coins-list_item-block .arrow svg path {
    fill: #ffffff61;
    fill-opacity: 1
}

.input-select .items .coins-list_item-block_active .arrow,
.input-select .items .coins-list_item-block_selected .arrow {
    transition: all .2s ease-in-out
}

.input-select .items .coins-list_item-block_active .coins-list_item-block-info .info .coin-name,
.input-select .items .coins-list_item-block_selected .coins-list_item-block-info .info .coin-name,
.input-select .items .coins-list_item-block_active .coins-list_item-block-info .info .coin-name span,
.input-select .items .coins-list_item-block_selected .coins-list_item-block-info .info .coin-name span {
    color: #02c076
}

.input-select .items .coins-list_item-block_active .image {
    position: relative;
    display: flex;
    align-items: center;
    left: -2px;
    justify-content: center;
    border-radius: 50px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, .04);
    box-shadow: 0 0 0 2px #02c076
}

.input-select .items .coins-list_item-block_active .image img {
    max-width: 28px;
    border-radius: 50px
}

.input-select .items .coins-list_item-block_active .info {
    position: relative;
    left: -4px
}

.input-select .items .coins-list_item-block_active .arrow {
    transform: rotate(-180deg)
}

.input-select .items .coins-list_item-block_active .arrow svg g path {
    fill: #02c076 !important;
    fill-opacity: 1
}

.input-select .items .coins-list_item--networks {
    padding: 9px 16px 9px 56px;
    box-sizing: border-box;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    color: #fff;
    transition: all .4s ease-in-out;
    background: rgba(27, 26, 28, .03)
}

.input-select .items .coins-list_item--networks:hover,
.input-select .items .coins-list_item--networks:active {
    background: rgba(255, 255, 255, .04)
}

.input-select .items .coins-list_item--networks-active {
    cursor: default;
    color: #02c076;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center
}

.input-select .items .coins-list_item--networks-active:hover {
    background: rgba(27, 26, 28, .03)
}

.input-select .items .coins-list_item--networks span {
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    color: #ffffff61
}

.input-select .items .coins-list_item-disabled {
    mix-blend-mode: luminosity;
    opacity: .25;
    cursor: default
}

.input-select .items .coins-list_item-disabled .coins-list_item-block:hover {
    background: none
}

.curs-up .text-input input {
    color: #02c076
}

.curs-down .text-input input {
    color: #ff783e
}

.trustpilot-widget[data-v-6c0f2ef1] {
    width: 245px;
    transform: translate(-8px);
    margin-top: 20px
}

@media (max-width: 1079px) {
    .trustpilot-widget[data-v-6c0f2ef1] {
        margin-top: 0
    }
}

@media (max-width: 1079px) {
    .create-error_popup .title {
        margin-bottom: 16px
    }
}

.create-error_popup .main_button-error {
    background: #FF783E
}

@media (max-width: 1079px) {
    .create-error_popup .main_button-error {
        margin-top: 200px;
        max-width: 100%
    }
}

.order-block-main {
    width: 100%;
    margin-top: 84px;
    position: relative;
    z-index: 9
}

@media (max-width: 1079px) {
    .order-block-main {
        margin-top: 20px
    }
}

.order-block-main .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between
}

@media (max-width: 1079px) {
    .order-block-main .container {
        flex-direction: column
    }
}

.order-block-main_text {
    max-width: 520px;
    width: 100%
}

@media (max-width: 1079px) {
    .order-block-main_text {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center
    }
}

.order-block-main_text .head-text {
    font-weight: 900;
    font-size: 56px;
    line-height: 62px;
    letter-spacing: -.02em;
    color: #fff
}

@media (max-width: 1079px) {
    .order-block-main_text .head-text {
        font-size: 36px;
        line-height: 38px;
        text-align: center
    }
}

.order-block-main_text .head-text_count {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap
}

.order-block-main_text .head-text b {
    display: flex;
    color: #02c076
}

.order-block-main_text .text-desc {
    margin-top: 24px;
    font-weight: 300;
    font-size: 20px;
    line-height: 28px;
    color: #fff
}

@media (max-width: 1079px) {
    .order-block-main_text .text-desc {
        font-size: 14px;
        line-height: 20px;
        text-align: center;
        max-width: 336px
    }
}

.order-block-main_text .buttons {
    margin-top: 32px
}

@media (max-width: 1079px) {
    .order-block-main_text .buttons {
        display: none
    }
}

.order-block-main_text .buttons svg {
    max-width: 162px
}

.order-block-main_exchange {
    display: flex;
    justify-content: center
}

.order-block-main_exchange .exchange-main_block {
    width: 520px
}

@media (max-width: 1079px) {
    .order-block-main_exchange .exchange-main_block {
        max-width: 100%;
        margin-top: 32px
    }
}

.order-block-main_exchange .exchange-main_block .buttons {
    display: flex;
    flex-direction: row
}

.order-block-main_exchange .exchange-main_block .buttons--item {
    padding: 18px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, .03);
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: #ffffff61;
    width: 100%;
    text-align: center;
    cursor: pointer
}

@media (max-width: 1079px) {
    .order-block-main_exchange .exchange-main_block .buttons--item {
        font-size: 16px;
        line-height: 24px
    }
}

.order-block-main_exchange .exchange-main_block .buttons--item_active {
    background: #29282A;
    color: #fff
}

.order-block-main_exchange .exchange-main_block .buttons .exchange {
    border-radius: 20px 0 0
}

.order-block-main_exchange .exchange-main_block .buttons .network {
    border-radius: 0 20px 0 0
}

.order-block-main_exchange .exchange-main_block .inputs {
    border-radius: 20px;
    box-sizing: border-box;
    padding: 28px 44px 44px;
    background: #29282A;
    min-height: 397px
}

@media (max-width: 1079px) {
    .order-block-main_exchange .exchange-main_block .inputs {
        min-height: 100%;
        padding: 12px
    }
}

.order-block-main_exchange .exchange-main_block .inputs-exchange {
    display: flex;
    justify-content: center
}

.order-block-main_exchange .exchange-main_block .inputs .calc-form {
    position: relative;
    width: 100%
}

.order-block-main_exchange .exchange-main_block .inputs .calc-form_loader {
    background: #29282A;
    min-height: 337px;
    display: grid;
    place-items: center
}

@media (max-width: 1079px) {
    .order-block-main_exchange .exchange-main_block .inputs .calc-form_loader {
        min-height: 289px
    }
}

@media (max-width: 1079px) {
    .order-block-main_exchange .exchange-main_block .inputs .calc-form {
        max-width: 432px;
        width: 100%
    }
}

.order-block-main_exchange .exchange-main_block .inputs .calc-form .you-send .error-text {
    position: relative;
    top: 7px;
    left: 12px;
    color: #ff783e;
    font-size: 12px
}

.order-block-main_exchange .exchange-main_block .inputs .calc-form .rate-swap {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px;
    padding-bottom: 12px;
    padding-top: 8px
}

@media (max-width: 1079px) {
    .order-block-main_exchange .exchange-main_block .inputs .calc-form .rate-swap {
        padding-bottom: 8px
    }
}

.order-block-main_exchange .exchange-main_block .inputs .calc-form .rate-swap .minimum-amount {
    flex-grow: 1;
    margin-bottom: 0;
    margin-top: 0
}

.order-block-main_exchange .exchange-main_block .inputs .calc-form .rate-swap .swap-coins {
    margin-top: 4px;
    width: 24px;
    height: 24px;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    padding-right: 11.6px
}

@media (max-width: 1079px) {
    .order-block-main_exchange .exchange-main_block .inputs .calc-form .rate-swap .swap-coins {
        margin-top: 0
    }
}

.order-block-main_exchange .exchange-main_block .inputs .calc-form .rate-swap .swap-coins svg {
    position: relative;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0
}

.order-block-main_exchange .exchange-main_block .inputs .calc-form .rate-swap .rate-swap:before {
    content: "";
    flex-basis: 100%;
    order: 1
}

.order-block-main_exchange .exchange-main_block .inputs .calc-form .rate-swap .rate-swap.min-width-exceeded:before {
    order: 2
}

.order-block-main_exchange .exchange-main_block .inputs .fixed-rate {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
    align-items: center;
    margin-bottom: 24px
}

@media (max-width: 1079px) {
    .order-block-main_exchange .exchange-main_block .inputs .fixed-rate {
        margin-bottom: 16px;
        margin-top: 4px;
        padding: 0 12px
    }
}

.order-block-main_exchange .exchange-main_block .inputs .fixed-rate_text-container {
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    display: flex;
    align-items: center;
    text-align: center;
    gap: 6px;
    color: #02c076;
    margin-left: 8px
}

@media (max-width: 1079px) {
    .order-block-main_exchange .exchange-main_block .inputs .fixed-rate_text-container {
        pointer-events: none
    }
}

@media (min-width: 1079px) {
    .order-block-main_exchange .exchange-main_block .inputs .fixed-rate_text-container:hover {
        cursor: pointer;
        color: #01ad6a
    }

    .order-block-main_exchange .exchange-main_block .inputs .fixed-rate_text-container:hover svg path {
        fill: #01ad6a
    }
}

.order-block-main_exchange .exchange-main_block .inputs .fixed-rate .title {
    font-family: Roboto, sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 24px;
    line-height: 24px;
    color: #fff
}

@media (max-width: 1079px) {
    .order-block-main_exchange .exchange-main_block .inputs .fixed-rate .title {
        font-size: 16px
    }
}

.order-block-main_exchange .exchange-main_block .inputs .fixed-rate_floating {
    color: #ffffff61
}

.order-block-main_exchange .exchange-main_block .inputs .fixed-rate_floating svg path {
    fill: #ffffff61
}

.order-block-main_exchange .exchange-main_block .inputs .fixed-rate_block {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px
}

.order-block-main_exchange .exchange-main_block .inputs .fixed-rate_block .info_icon {
    position: relative;
    display: grid;
    place-items: center
}

.order-block-main_exchange .exchange-main_block .inputs .fixed-rate_block .info_icon svg path {
    transition: all .3s ease-in-out
}

.order-block-main_exchange .exchange-main_block .inputs .fixed-rate_block .info_icon svg:hover {
    cursor: pointer
}

.order-block-main_exchange .exchange-main_block .inputs .fixed-rate_block .info_icon svg:hover path {
    fill: #02c076;
    fill-opacity: 1
}

.order-block-main_exchange .exchange-main_block .inputs .fixed-rate_block .info_icon--text {
    position: absolute;
    z-index: 999;
    top: calc(100% + 8px);
    left: -100px;
    width: 244px;
    background: #363537;
    box-shadow: 0 4px 12px #1b1a1ca3;
    border-radius: 8px;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    color: #fff;
    padding: 12px;
    box-sizing: border-box
}

@media (max-width: 1079px) {
    .order-block-main_exchange .exchange-main_block .inputs .fixed-rate_block .info_icon--text {
        right: -22px;
        left: unset
    }
}

.order-block-main_exchange .exchange-main_block .inputs .swap-coins {
    position: relative;
    height: 1px;
    width: 100%
}

.order-block-main_exchange .exchange-main_block .inputs .swap-coins svg {
    position: absolute;
    right: 12px;
    top: -35px;
    transition: all .3s ease-in-out
}

@media (max-width: 1079px) {
    .order-block-main_exchange .exchange-main_block .inputs .swap-coins svg {
        top: -32px;
        right: 6px
    }
}

.order-block-main_exchange .exchange-main_block .inputs .swap-coins svg:hover {
    cursor: pointer;
    transform: rotate(180deg)
}

.order-block-main_exchange .exchange-main_block .inputs .swap-coins svg:hover path {
    fill: #01ad6a
}

.order-block-main_exchange .exchange-main_block .inputs .main_button {
    margin-top: 24px
}

@media (max-width: 1079px) {
    .order-block-main_exchange .exchange-main_block .inputs .main_button {
        max-width: 100%;
        margin-top: 0
    }

    .order-block-main_exchange .exchange-main_block .inputs .main_button-text {
        font-size: 16px
    }
}

.order-block-main_exchange .exchange-main_block .inputs .minimum-amount {
    margin-top: 8px;
    margin-bottom: 23px;
    padding-left: 12px;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: #ffffff61
}

@media (max-width: 1079px) {
    .order-block-main_exchange .exchange-main_block .inputs .minimum-amount {
        margin-bottom: 15px
    }
}

.order-block-main_exchange .exchange-main_block .inputs .minimum-amount span {
    color: #fff
}

.order-block-main_exchange .exchange-main_block .inputs .minimum-amount_error {
    color: #ff783e
}

.order-block-main_exchange .exchange-main_block .inputs .exchange-rate {
    margin-top: 8px;
    padding-left: 12px;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: #fff
}

@media (max-width: 1079px) {
    .order-block-main_exchange .exchange-main_block .inputs .exchange-rate {
        margin-bottom: 20px
    }
}

.order-block-main_exchange .exchange-main_block .inputs .exchange-rate span {
    color: #ffffff61
}

.order-block-main_exchange .exchange-main_block .server-disabled-block {
    display: flex;
    flex-direction: column;
    padding: 41px 0 44px;
    border-radius: 20px;
    background: var(--gray-card, #29282A);
    -webkit-backdrop-filter: blur(13px);
    backdrop-filter: blur(13px)
}

@media (max-width: 1089px) {
    .order-block-main_exchange .exchange-main_block .server-disabled-block {
        border-radius: 16px;
        padding: 28px 0
    }
}

.order-block-main_exchange .exchange-main_block .server-disabled-block .gear-icon {
    margin: 0 auto 25px
}

@media (max-width: 1089px) {
    .order-block-main_exchange .exchange-main_block .server-disabled-block .gear-icon {
        margin: 0 auto 16px
    }
}

.order-block-main_exchange .exchange-main_block .server-disabled-block h3 {
    margin: 0 0 16px;
    color: #fff;
    text-align: center;
    font-family: Roboto, sans-serif;
    font-size: 24px;
    font-weight: 900;
    line-height: 24px
}

@media (max-width: 1089px) {
    .order-block-main_exchange .exchange-main_block .server-disabled-block h3 {
        margin-bottom: 8px;
        font-size: 16px;
        font-weight: 900;
        line-height: 24px
    }
}

.order-block-main_exchange .exchange-main_block .server-disabled-block p {
    margin: 0 auto 32px;
    width: 100%;
    max-width: 320px;
    color: var(--white-38, rgba(255, 255, 255, .38));
    text-align: center;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px
}

@media (max-width: 1089px) {
    .order-block-main_exchange .exchange-main_block .server-disabled-block p {
        margin-bottom: 16px;
        font-size: 14px;
        font-weight: 400;
        line-height: 20px
    }
}

.order-block-main_exchange .exchange-main_block .server-disabled-block .sockets-container {
    display: flex;
    margin-bottom: 44px;
    gap: 26px;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    opacity: 20%
}

.order-block-main_exchange .exchange-main_block .server-disabled-block .sockets-container>svg {
    flex-shrink: 0
}

.order-block-main_exchange .exchange-main_block .server-disabled-block .support-button {
    display: flex;
    gap: 8px;
    margin: 0 auto;
    width: fit-content;
    cursor: pointer;
    color: var(--red, #FF783E);
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px
}

.table-chart {
    display: grid;
    place-items: center;
    height: 32px
}

.coins-table {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1
}

.coins-table .head {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    margin-bottom: 24px
}

@media (max-width: 1079px) {
    .coins-table .head {
        flex-direction: column;
        gap: 24px
    }
}

.coins-table .head .title {
    font-weight: 900;
    font-size: 56px;
    line-height: 62px;
    letter-spacing: -.02em;
    color: #fff
}

@media (max-width: 1079px) {
    .coins-table .head .title {
        font-size: 36px;
        line-height: 38px
    }
}

.coins-table .head .filters {
    display: flex;
    flex-direction: row;
    gap: 40px
}

@media (max-width: 1079px) {
    .coins-table .head .filters {
        gap: 32px;
        width: max-content;
        padding-left: 24px;
        padding-right: 24px
    }
}

.coins-table .head .filters-block {
    max-width: 100%;
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none
}

.coins-table .head .filters-block::-webkit-scrollbar {
    display: none
}

.coins-table .head .filters .item {
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    color: #ffffff61;
    display: flex;
    flex-direction: row;
    gap: 8px;
    cursor: pointer;
    transition: all .3s ease-in-out
}

.coins-table .head .filters .item svg path {
    transition: all .3s ease-in-out
}

.coins-table .head .filters .item:hover {
    color: #02c076
}

.coins-table .head .filters .item:hover svg path {
    fill: #02c076;
    fill-opacity: 1
}

.coins-table .head .filters .item-active {
    color: #02c076
}

.coins-table .head .filters .item-active svg path {
    fill: #02c076;
    fill-opacity: 1
}

.coins-table .table {
    caption-side: bottom;
    border-collapse: collapse;
    width: 100%;
    transition: all 3s ease-in-out
}

@media (max-width: 1079px) {
    .coins-table .table {
        width: 780px
    }
}

.coins-table .table-block {
    background: #29282A;
    border-radius: 20px;
    box-sizing: border-box;
    padding-bottom: 24px;
    margin-bottom: 80px
}

@media (max-width: 1079px) {
    .coins-table .table-block {
        margin-bottom: 40px;
        max-width: 100%;
        overflow: auto;
        -ms-overflow-style: none;
        scrollbar-width: none
    }

    .coins-table .table-block::-webkit-scrollbar {
        display: none
    }
}

.coins-table .table tr {
    border: 0 transparent
}

.coins-table .table th {
    padding-bottom: 8px;
    padding-top: 20px
}

.coins-table .table td {
    height: 54px
}

.coins-table .table-headers .table-th {
    text-align: left
}

.coins-table .table-headers .table-th:first-child {
    padding-left: 24px
}

@media (max-width: 1079px) {
    .coins-table .table-headers .table-th:first-child {
        padding-left: 16px;
        border-radius: 20px 0 0
    }
}

.coins-table .table-headers .table-th .text {
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: #ffffff61;
    cursor: pointer
}

.coins-table .table-row {
    cursor: pointer;
    transition: all .3s ease-in-out
}

.coins-table .table-row:hover {
    background: #242325;
    border: 0 red
}

.coins-table .table-currency {
    padding-left: 24px;
    box-sizing: border-box;
    width: 207px;
    transition: width .5s ease
}

@media (max-width: 1079px) {
    .coins-table .table-currency {
        position: sticky;
        top: 0;
        bottom: 0;
        z-index: 99;
        left: 0;
        width: 19%;
        padding-left: 16px
    }

    .coins-table .table-currency.sticky {
        background: #29282A;
        width: 7%;
        overflow: hidden;
        box-shadow: 1px 0 #363537;
        max-width: 60px
    }

    .coins-table .table-currency.sticky .coin_info_name {
        opacity: 0;
        width: 1px;
        overflow: hidden
    }

    .coins-table .table-currency.sticky .text {
        opacity: 0
    }
}

.coins-table .table-currency .coin_info {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px
}

.coins-table .table-currency .coin_info img {
    max-width: 32px;
    border-radius: 50%
}

.coins-table .table-currency .coin_info_name {
    display: flex;
    flex-direction: column;
    gap: 2px
}

.coins-table .table-currency .coin_info_name .short {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #fff
}

.coins-table .table-currency .coin_info_name .full {
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    color: #ffffff61
}

.coins-table .table-price {
    width: 128px;
    font-weight: 400;
    padding-top: 10px;
    box-sizing: border-box;
    vertical-align: top;
    font-size: 14px;
    line-height: 20px;
    color: #ffffff61
}

.coins-table .table-price span {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #fff
}

@media (min-width: 1079px) {
    .coins-table .table-price_mobile {
        display: none
    }
}

@media (max-width: 1079px) {
    .coins-table .table-price {
        width: 13%
    }

    .coins-table .table-price_desktop {
        display: none
    }
}

.coins-table .table-day {
    width: 160px;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    padding-top: 10px;
    vertical-align: top;
    box-sizing: border-box;
    color: #fff
}

.coins-table .table-day_block {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px
}

.coins-table .table-day_block--no_data {
    color: #ffffff1f
}

.coins-table .table-day_up {
    color: #02c076
}

.coins-table .table-day_down {
    color: #ff783e
}

@media (max-width: 1079px) {
    .coins-table .table-day {
        width: 12%
    }
}

.coins-table .table-dayAmount {
    width: 168px;
    box-sizing: border-box;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #ffffff61;
    padding-top: 10px;
    vertical-align: top
}

.coins-table .table-dayAmount span {
    font-weight: 600;
    color: #fff
}

@media (max-width: 1079px) {
    .coins-table .table-dayAmount {
        width: 17.2%
    }
}

.coins-table .table-marketCap {
    width: 176px;
    vertical-align: top;
    padding-top: 10px;
    box-sizing: border-box
}

.coins-table .table-marketCap_text {
    display: flex;
    flex-direction: column;
    gap: 2px
}

.coins-table .table-marketCap_text-top {
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    color: #ffffff61
}

.coins-table .table-marketCap_text-top span {
    font-weight: 600;
    color: #fff
}

.coins-table .table-marketCap_text-bottom {
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    color: #ffffff61
}

@media (max-width: 1079px) {
    .coins-table .table-marketCap {
        width: 19.67%
    }
}

.coins-table .table-week {
    width: 120px;
    max-width: 120px
}

@media (max-width: 1079px) {
    .coins-table .table-week {
        width: 17%
    }
}

.coins-table .table-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 100%
}

.coins-table .table-buttons .button-create {
    width: 40px;
    height: 40px;
    background: #363537;
    border-radius: 30%;
    clip-path: polygon(0 10%, 10% 0, 90% 0, 100% 10%, 100% 90%, 90% 100%, 10% 100%, 0 90%);
    display: grid;
    place-items: center;
    transition: all .3s ease-in-out
}

.coins-table .table-buttons .button-create svg path {
    fill: #02c076;
    transition: all .3s ease-in-out
}

.coins-table .table-buttons .button-create:hover {
    background: #01AD6A
}

.coins-table .table-buttons .button-create:hover svg path {
    fill: #363537
}

@media (max-width: 1079px) {
    .coins-table .table-buttons {
        width: 58%
    }
}

.whats-up {
    width: 100%;
    max-width: 600px;
    background: #FF783E;
    border-radius: 20px;
    position: relative;
    padding: 24px 0 32px 40px;
    box-sizing: border-box;
    margin: 0 auto 42px;
    min-height: 254px
}

@media (max-width: 1079px) {
    .whats-up {
        max-width: 360px;
        padding: 20px;
        margin-bottom: 64px;
        min-height: 100%
    }
}

.whats-up .close {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 9
}

.whats-up .close:hover {
    cursor: pointer
}

.whats-up img {
    position: absolute;
    bottom: -42px;
    right: 0
}

@media (max-width: 1079px) {
    .whats-up img {
        max-width: 182px;
        bottom: 0;
        right: -10px
    }
}

.whats-up .text {
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.whats-up .text .title {
    font-weight: 900;
    font-size: 36px;
    line-height: 38px;
    letter-spacing: -.02em;
    color: #1b1a1c;
    margin-bottom: 12px;
    max-width: 340px;
    width: 100%
}

@media (max-width: 1079px) {
    .whats-up .text .title {
        max-width: 160px;
        font-weight: 900;
        font-size: 28px;
        line-height: 32px;
        color: #1b1a1c;
        margin-bottom: 8px
    }
}

.whats-up .text .desc {
    font-family: Roboto, sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 24px;
    line-height: 29px;
    color: #fff;
    max-width: 280px;
    width: 100%;
    margin-bottom: 21px
}

@media (max-width: 1079px) {
    .whats-up .text .desc {
        font-size: 20px;
        line-height: 22px;
        margin-bottom: 16px;
        max-width: 155px
    }
}

.whats-up .text .button {
    background: #29282A;
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    padding: 8px 12px 8px 6px;
    border-radius: 8px;
    transition: all .3s ease-in-out
}

.whats-up .text .button:hover {
    cursor: pointer;
    background: rgba(39, 40, 42, .99)
}

.whats-up .text .button svg {
    max-width: 24px;
    height: auto
}

.whats-up .text .button svg path {
    fill: #fff
}

.press-block {
    width: 100%;
    position: relative;
    margin-bottom: 120px
}

@media (max-width: 1079px) {
    .press-block {
        margin-bottom: 56px
    }
}

@media (max-width: 1079px) {
    .press-block .container {
        padding: 0
    }
}

.press-block .title {
    color: var(--white-100, #FFF);
    font-family: Inter, sans-serif;
    font-size: 56px;
    font-style: normal;
    font-weight: 900;
    line-height: 62px;
    letter-spacing: -1.12px
}

@media (max-width: 1079px) {
    .press-block .title {
        color: var(--white-100, #FFF);
        text-align: center;
        font-family: Inter, sans-serif;
        font-size: 36px;
        font-style: normal;
        font-weight: 900;
        line-height: 38px;
        letter-spacing: -.72px
    }
}

.press-block .press--item {
    max-width: 344px;
    box-sizing: border-box;
    border-radius: 20px;
    background: var(--white-hover-4, rgba(255, 255, 255, .04));
    -webkit-backdrop-filter: blur(13.5914087296px);
    backdrop-filter: blur(13.5914087296px);
    padding: 20px 24px;
    min-height: 272px;
    height: 100%;
    cursor: pointer
}

@media (max-width: 1079px) {
    .press-block .press--item {
        min-height: 296px
    }
}

.press-block .press--item_title {
    color: var(--white-100, #FFF);
    font-family: Roboto, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 900;
    line-height: 28px;
    margin-bottom: 12px;
    margin-top: 16px;
    transition: all .3s ease-in-out
}

.press-block .press--item_desc {
    color: var(--white-100, #FFF);
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px
}

.press-block .press--item:hover .press--item_title {
    color: var(--green, #02C076)
}

.press-block .splide {
    padding: 47px 0 0 !important
}

@media (max-width: 1079px) {
    .press-block .splide {
        padding: 24px 0 0 !important
    }
}

.press-block .slider .splide__slide {
    width: 100%
}

.press-block .slider__arrows {
    position: absolute;
    z-index: 99;
    bottom: 100%;
    right: 0;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-end
}

@media (max-width: 1079px) {
    .press-block .slider__arrows {
        display: none
    }
}

.press-block .slider__arrows .splide__arrows {
    display: flex;
    gap: 16px
}

.press-block .slider__arrows .splide__arrows .splide__arrow {
    position: relative;
    right: unset;
    top: unset;
    left: unset;
    transform: unset;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: var(--green, #02C076);
    -webkit-backdrop-filter: blur(13.5914087296px);
    backdrop-filter: blur(13.5914087296px);
    transition: all .3s ease-in-out;
    opacity: 1
}

.press-block .slider__arrows .splide__arrows .splide__arrow:hover {
    background: #01AD6A
}

.press-block .slider__arrows .splide__arrows .splide__arrow svg {
    height: unset;
    width: unset
}

.press-block .slider__arrows .splide__arrows .splide__arrow--prev svg {
    transform: rotate(0)
}

.press-block .slider .slide--item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden
}

.press-block .slider .slide--item video,
.press-block .slider .slide--item img {
    min-width: 100%;
    min-height: calc(100vh - 66px);
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.press-block .slider .slide--item_mobile {
    display: none
}

@media (max-width: 1080px) {
    .press-block .slider .slide--item_mobile {
        display: block
    }
}

@media (max-width: 1080px) {
    .press-block .slider .slide--item_desktop {
        display: none
    }
}

.press-block .slider .slide--item .text {
    position: absolute;
    bottom: 180px;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
    max-width: 1440px;
    width: 100%
}

.press-block .slider .slide--item .text_block {
    max-width: 792px;
    padding-left: 34px
}

.press-block .slider .slide--item .text_block .title {
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    font-family: Montserrat, sans-serif;
    font-size: 96px;
    font-style: italic;
    font-weight: 700;
    line-height: 96px
}

@media (max-width: 1079px) {
    .press-block .slider .slide--item .text_block .title {
        gap: 12px
    }
}

.press-block .slider .slide--item .text_block .title span {
    font-family: Montserrat, sans-serif;
    font-size: 96px;
    font-style: italic;
    font-weight: 700;
    line-height: 96px
}

@media (max-width: 1079px) {
    .press-block .slider .slide--item .text_block .title span {
        font-size: 40px;
        font-style: italic;
        font-weight: 700;
        line-height: 48px
    }
}

.press-block .slider .slide--item .text_block .title b {
    color: #00df00;
    margin-right: 7px
}

.press-block .slider .slide--item .text_block .desc {
    margin-top: 48px;
    color: #fff;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px
}

@media (max-width: 1079px) {
    .press-block .slider .slide--item .text_block .desc {
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 26px;
        max-width: calc(100% - 96px)
    }
}

:root {
    --w3m-z-index: 999999 !important
}

body {
    background: #1B1A1C;
    font-family: Inter, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    min-height: 100vh
}

body.popup-open {
    overflow: hidden
}

a {
    text-decoration: none
}

.container {
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box
}

@media (max-width: 1079px) {
    .container {
        padding: 0 12px
    }
}

.container-header {
    max-width: 100%;
    padding: 0 32px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box
}

@media (max-width: 1079px) {
    .container-header {
        padding: 0 12px
    }
}

.fade-enter-active,
.fade-leave-active {
    transition: all .3s ease-in-out
}

.fade-enter-from,
.fade-leave-to {
    opacity: 0;
    filter: blur(5px)
}

.slide-fade-enter-active {
    transition: all .3s ease-out
}

.slide-fade-leave-active {
    transition: all .3s cubic-bezier(1, .5, .8, 1)
}

.slide-fade-enter-from,
.slide-fade-leave-to {
    opacity: 0;
    filter: blur(5px)
}

.h1 {
    font-size: 64px;
    font-style: normal;
    font-weight: 900;
    line-height: 72px;
    color: #fff
}

@media (max-width: 1079px) {
    .h1 {
        font-size: 36px;
        line-height: 38px
    }
}

button {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.lv-progressbar {
    background: #424143 !important;
    border-radius: 0 !important;
    height: 4px !important;
    width: 100%
}

.main_button {
    width: 100%;
    background: #02C076;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: #29282a;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 18px;
    box-sizing: border-box;
    transition: all .3s ease-in-out;
    cursor: pointer;
    height: 60px
}

.main_button:hover {
    background: #01AD6A
}

.main_button-text {
    position: relative;
    z-index: 4;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: #29282a;
    -webkit-user-select: none;
    user-select: none
}

@media (max-width: 1079px) {
    .main_button-text {
        font-size: 16px;
        line-height: 24px
    }
}

.main_button-text {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px
}

.main_button--icon {
    max-width: 64px
}

@media (max-width: 1079px) {
    .main_button {
        max-width: 225px;
        font-size: 18px;
        line-height: 24px
    }
}

.main_button-disabled {
    background: rgba(255, 255, 255, .04);
    cursor: default
}

.main_button-disabled .main_button-text {
    color: #ffffff61
}

.main_button-disabled:hover {
    background: rgba(255, 255, 255, .04)
}

.main_button-transparent {
    background: none
}

.main_button-transparent .main_button-text {
    color: #02c076
}

.main_button-transparent:hover {
    background: #363537
}

.simple-layout {
    max-width: 100%;
    width: 100%;
    background: #1B1A1C;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative
}

.simple-layout form {
    width: 100%
}

.select-wrapper {
    position: relative;
    z-index: 999
}

.select-wrapper .selected-item {
    background: #363537;
    min-height: 60px;
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    position: relative;
    align-items: center;
    padding: 10px 12px;
    box-sizing: border-box;
    gap: 16px
}

.select-wrapper .selected-item svg path {
    transition: all .3s ease-in-out
}

.select-wrapper .selected-item .text {
    display: flex;
    flex-direction: column;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    transition: all .3s ease-in-out
}

@media (max-width: 1079px) {
    .select-wrapper .selected-item .text {
        max-width: 77%
    }
}

.select-wrapper .selected-item .text label {
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: #ffffff61;
    transition: all .3s ease-in-out
}

.select-wrapper .selected-item .arrow {
    position: absolute;
    right: 12px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    transition: all .3s ease-in-out
}

.select-wrapper .selected-item .arrow path {
    fill: #ffffff61
}

.select-wrapper .selected-item:hover {
    cursor: pointer;
    background: linear-gradient(0deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .04)), #363537
}

.select-wrapper .selected-item:hover svg path {
    fill: #02c076;
    fill-opacity: 1
}

.select-wrapper .selected-item--active {
    background: linear-gradient(0deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .04)), #363537
}

.select-wrapper .selected-item--active svg path {
    fill: #02c076;
    fill-opacity: 1
}

.select-wrapper .selected-item--active .text label {
    font-size: 12px;
    color: #02c076
}

.select-wrapper .selected-item--active .arrow {
    transform: rotate(180deg)
}

.select-wrapper .selected-item--active .arrow path {
    fill: #02c076;
    fill-opacity: 1
}

.select-wrapper .selected-item--unselected .text label {
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    color: #ffffff61;
    transition: all .3s ease-in-out
}

.dropdown {
    position: absolute;
    width: 100%;
    padding: 8px 0;
    z-index: 99999;
    top: calc(100% + 4px);
    background: #363537;
    box-shadow: 0 4px 12px #1b1a1ca3;
    border-radius: 8px
}

.dropdown .item {
    position: relative;
    padding: 10px 16px 12px 56px;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #fff;
    transition: all .3s ease-in-out;
    cursor: pointer
}

.dropdown .item:hover {
    background: rgba(255, 255, 255, .04)
}

.dropdown .item svg {
    position: absolute;
    left: 12px;
    top: 10px
}

.dropdown .item__active {
    font-weight: 600
}

.dropdown__mobile {
    display: none
}

@media (max-width: 1079px) {
    .dropdown {
        background: #1B1A1C;
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
        height: 100%;
        padding: 0
    }

    .dropdown__mobile {
        display: flex
    }

    .dropdown .title {
        padding: 12px 12px 17px 20px;
        font-family: Roboto, sans-serif;
        font-style: normal;
        font-weight: 900;
        font-size: 28px;
        line-height: 30px;
        color: #fff;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 16px
    }

    .dropdown .item {
        padding: 10px 52px 12px 20px
    }

    .dropdown .item svg {
        left: unset;
        right: 14px;
        top: 10px
    }

    .dropdown .item__active {
        background: rgba(255, 255, 255, .04)
    }
}

.contact-us {
    width: 100%;
    margin-top: 16px;
    margin-bottom: 166px;
    box-sizing: border-box
}

@media (max-width: 1079px) {
    .contact-us {
        margin-bottom: 64px
    }
}

.contact-us .container {
    max-width: 520px;
    width: 100%
}

.contact-us .container .h1 {
    font-size: 64px;
    line-height: 72px;
    letter-spacing: .15px
}

.contact-us_form {
    width: 100%;
    background: #29282A;
    border-radius: 20px;
    padding: 40px 44px;
    box-sizing: border-box;
    margin-top: 40px;
    position: relative;
    z-index: 9
}

@media (max-width: 1079px) {
    .contact-us_form {
        padding: 20px 12px;
        margin-top: 24px
    }
}

.contact-us_form--inputs {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.contact-us_form--inputs .input-state {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-right: 2px
}

.contact-us_form--inputs .input-state input,
.contact-us_form--inputs .input-state textarea {
    background: #363537;
    border-radius: 8px;
    width: 100%;
    height: 60px;
    box-sizing: border-box;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    padding: 22px 16px 10px 56px;
    display: block;
    outline: none;
    border: none;
    cursor: pointer
}

@media (max-width: 1079px) {

    .contact-us_form--inputs .input-state input,
    .contact-us_form--inputs .input-state textarea {
        font-weight: 600;
        font-size: 16px;
        line-height: 24px
    }
}

.contact-us_form--inputs .input-state input:focus,
.contact-us_form--inputs .input-state textarea:focus {
    outline: none
}

.contact-us_form--inputs .input-state label {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #ffffff61;
    position: absolute;
    pointer-events: none;
    left: 56px;
    top: 30%;
    transition: .2s ease all;
    -moz-transition: .2s ease all;
    -webkit-transition: .2s ease all
}

.contact-us_form--inputs .input-state .svg {
    position: absolute;
    left: 12px;
    top: 16px
}

.contact-us_form--inputs .input-state .svg path {
    transition: all .3s ease-in-out
}

.contact-us_form--inputs .input-state input:focus~label,
.contact-us_form--inputs .input-state input:valid~label,
.contact-us_form--inputs .input-state textarea:focus~label,
.contact-us_form--inputs .input-state textarea:valid~label {
    top: 8px;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: #ffffff61
}

.contact-us_form--inputs .input-state:focus-within {
    box-shadow: 0 0 0 2px #02c076
}

.contact-us_form--inputs .input-state:focus-within input:focus~label,
.contact-us_form--inputs .input-state:focus-within input:valid~label,
.contact-us_form--inputs .input-state:focus-within textarea:focus~label,
.contact-us_form--inputs .input-state:focus-within textarea:valid~label {
    color: #02c076
}

.contact-us_form--inputs .input-state:focus-within .svg path {
    fill: #02c076;
    fill-opacity: 1
}

.contact-us_form--inputs .input-state_error {
    box-shadow: 0 0 0 2px #ff783e
}

.contact-us_form--inputs .input-state_error input:focus~label,
.contact-us_form--inputs .input-state_error input:valid~label,
.contact-us_form--inputs .input-state_error textarea:focus~label,
.contact-us_form--inputs .input-state_error textarea:valid~label {
    color: #ff783e
}

.contact-us_form--inputs .input-state_error .svg path {
    fill: #ff783e !important;
    fill-opacity: 1
}

.contact-us_form--inputs .input-state_error:focus-within {
    box-shadow: 0 0 0 2px #ff783e
}

.contact-us_form--inputs .input-state_error:focus-within input:focus~label,
.contact-us_form--inputs .input-state_error:focus-within input:valid~label,
.contact-us_form--inputs .input-state_error:focus-within textarea:focus~label,
.contact-us_form--inputs .input-state_error:focus-within textarea:valid~label {
    color: #ff783e
}

.contact-us_form--inputs .input-state_error:focus-within .svg path {
    fill: #ff783e !important;
    fill-opacity: 1
}

.contact-us_form--inputs .input-state-readonly {
    position: relative
}

.contact-us_form--inputs .input-state-readonly input:focus {
    outline: none;
    border: none
}

.contact-us_form--inputs .input-state-readonly label {
    top: 8px;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: #8e8e8e
}

.contact-us_form--inputs .input-state-readonly .loader-curs {
    animation: rotate .875s linear 0s infinite normal;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 999;
    top: 16px;
    right: 16px
}

.contact-us_form--inputs .input-state-readonly .loader-curs svg path {
    fill: #f24f34 !important;
    opacity: .3
}

.contact-us_form--inputs .input-state_textarea {
    margin-top: 11px
}

.contact-us_form--inputs .input-state_textarea textarea {
    height: 160px;
    resize: none;
    padding-left: 16px;
    box-sizing: border-box;
    padding-top: 20px;
    font-family: Inter, sans-serif
}

@media (max-width: 1079px) {
    .contact-us_form--inputs .input-state_textarea textarea {
        min-height: 160px;
        height: auto;
        overflow: hidden;
        box-sizing: border-box
    }
}

.contact-us_form--inputs .input-state_textarea label {
    top: 18px;
    left: 16px
}

.contact-us_form--inputs .input-state_textarea_stripe {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%
}

.contact-us_form--inputs .input-state:hover input,
.contact-us_form--inputs .input-state:hover textarea {
    background: linear-gradient(0deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .04)), #363537
}

.contact-us_form--inputs .input-state:hover .svg path {
    fill: #02c076;
    fill-opacity: 1
}

.contact-us_form--inputs .desc {
    margin: 12px 0 12px 18px;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: #ffffff61
}

@media (max-width: 1079px) {
    .contact-us_form--inputs .desc {
        display: none
    }
}

.contact-us_form--inputs .main_button {
    max-width: 100%
}

@media (max-width: 1079px) {
    .contact-us_form--inputs .main_button {
        margin-top: 12px
    }
}

.contact-us_info {
    display: flex;
    flex-direction: column
}

.contact-us_info .desc {
    padding-top: 20px;
    padding-bottom: 16px;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    color: #ffffff61
}

.contact-us_info .buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 4px;
    border-radius: 8px;
    overflow: hidden
}

.contact-us_info .buttons .item {
    background: #29282A;
    width: 100%;
    padding: 12px 0 16px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    transition: all .3s ease-in-out
}

.contact-us_info .buttons .item_text {
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    color: #02c076
}

@media (max-width: 1079px) {
    .contact-us_info .buttons .item_text {
        display: none
    }
}

.contact-us_info .buttons .item:hover {
    background: #363537
}

.popup {
    background: rgba(27, 26, 28, .72);
    position: fixed;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center
}

.popup_form {
    background: #29282A;
    box-shadow: 0 4px 12px #1b1a1ca3;
    border-radius: 12px;
    margin: auto;
    padding: 24px;
    box-sizing: border-box;
    position: relative;
    max-width: 360px;
    width: 100%
}

@media (max-width: 1079px) {
    .popup_form {
        height: 100%;
        background: #1B1A1C;
        display: flex
    }
}

.popup_form svg {
    position: absolute;
    right: 8px;
    top: 8px
}

.popup_form svg rect {
    fill: none
}

.popup_form svg path {
    fill: #7a7a7b;
    transition: all .3s ease-in-out
}

@media (max-width: 1079px) {
    .popup_form svg path {
        fill: #02c076
    }
}

.popup_form svg:hover {
    cursor: pointer
}

.popup_form svg:hover path {
    fill: #02c076
}

.popup_form_text {
    align-self: center
}

.popup_form_text .title {
    font-family: Roboto, sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 24px;
    line-height: 24px;
    color: #fff
}

@media (max-width: 1079px) {
    .popup_form_text .title {
        font-weight: 900;
        font-size: 36px;
        line-height: 38px;
        text-align: center;
        letter-spacing: -.02em
    }
}

.popup_form_text .desc {
    margin-top: 20px;
    margin-bottom: 32px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #fff
}

@media (max-width: 1079px) {
    .popup_form_text .desc {
        text-align: center;
        margin-top: 16px;
        margin-bottom: 0
    }
}

@media (max-width: 1079px) {
    .popup_form .main_button {
        max-width: 312px;
        position: fixed;
        bottom: 24px
    }
}

.page-not-found {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 700px;
    height: calc(100vh - 100px)
}

.page-not-found_block {
    margin: 0 auto;
    max-width: 312px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center
}

.page-not-found_block .title {
    margin-top: 24px;
    font-weight: 900;
    font-size: 64px;
    line-height: 72px;
    color: #fff;
    margin-bottom: 12px
}

.page-not-found_block .desc {
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    color: #ffffff61;
    margin-bottom: 40px
}

.how-to-use_hero-block {
    display: flex;
    flex-direction: column;
    margin-bottom: 96px;
    max-width: 1080px;
    width: 100%
}

@media (max-width: 1079px) {
    .how-to-use_hero-block {
        margin-bottom: 48px;
        margin-top: 20px
    }
}

.how-to-use_hero-block_features {
    margin-top: 56px
}

@media (max-width: 1079px) {
    .how-to-use_hero-block_features {
        max-width: 100%;
        overflow: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
        margin-top: 32px
    }

    .how-to-use_hero-block_features::-webkit-scrollbar {
        display: none
    }
}

.how-to-use_hero-block_features-block {
    display: flex;
    flex-direction: row;
    gap: 20px
}

@media (max-width: 1079px) {
    .how-to-use_hero-block_features-block {
        width: 520px;
        padding: 0 12px;
        box-sizing: border-box;
        gap: 8px
    }
}

.how-to-use_hero-block_features-block .item {
    width: 100%;
    background: #FF783E;
    border-radius: 20px;
    padding: 16px 0 28px 24px;
    box-sizing: border-box;
    position: relative;
    cursor: pointer
}

@media (max-width: 1079px) {
    .how-to-use_hero-block_features-block .item {
        display: flex;
        flex-direction: column;
        justify-content: space-between
    }
}

.how-to-use_hero-block_features-block .item .title {
    max-width: 200px;
    width: 100%;
    font-family: Roboto, sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 8px;
    color: #fff
}

.how-to-use_hero-block_features-block .item .title--soon {
    max-width: 210px
}

.how-to-use_hero-block_features-block .item .title--soon b {
    position: relative;
    bottom: 3px;
    left: 4px;
    background: #29282A;
    border-radius: 4px;
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    color: #fff;
    padding: 1px 4px
}

@media (max-width: 1079px) {
    .how-to-use_hero-block_features-block .item .title--soon b {
        position: absolute;
        left: unset;
        right: 16px;
        bottom: 16px
    }
}

@media (max-width: 1079px) {
    .how-to-use_hero-block_features-block .item .title--soon {
        max-width: 114px
    }
}

@media (max-width: 1079px) {
    .how-to-use_hero-block_features-block .item .title {
        font-size: 20px;
        line-height: 22px
    }
}

.how-to-use_hero-block_features-block .item .desc {
    max-width: 200px;
    width: 100%;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    opacity: .6
}

@media (max-width: 1079px) {
    .how-to-use_hero-block_features-block .item .desc {
        font-size: 12px;
        line-height: 16px;
        margin-bottom: 50px
    }
}

@media (max-width: 1079px) {
    .how-to-use_hero-block_features-block .item {
        min-height: 188px;
        padding: 16px
    }
}

.how-to-use_hero-block_features-block .item svg {
    position: absolute;
    right: 16px;
    top: 16px
}

@media (max-width: 1079px) {
    .how-to-use_hero-block_features-block .item svg {
        top: unset;
        bottom: 16px;
        left: 16px;
        right: unset;
        width: 40px;
        height: 40px
    }
}

.how-to-use_info {
    margin-bottom: 120px
}

@media (max-width: 1079px) {
    .how-to-use_info {
        padding: 0 4px;
        box-sizing: border-box;
        margin-bottom: 75px
    }
}

.how-to-use_info .title {
    font-weight: 900;
    font-size: 56px;
    line-height: 62px;
    letter-spacing: -.02em;
    color: #fff;
    margin-bottom: 40px
}

@media (max-width: 1079px) {
    .how-to-use_info .title {
        font-size: 36px;
        line-height: 38px;
        text-align: center
    }
}

.how-to-use_info .content {
    display: flex;
    flex-direction: column;
    gap: 56px
}

@media (max-width: 1079px) {
    .how-to-use_info .content {
        max-width: 100%;
        gap: 32px
    }
}

.how-to-use_info .content-item {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 64px
}

@media (max-width: 1079px) {
    .how-to-use_info .content-item {
        flex-direction: column;
        max-width: 100%;
        gap: 38px
    }
}

.how-to-use_info .content-item .text {
    width: 100%;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px
}

@media (max-width: 1079px) {
    .how-to-use_info .content-item .text {
        gap: 16px
    }
}

.how-to-use_info .content-item .text_h2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    font-family: Roboto, sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 24px;
    line-height: 28px;
    color: #fff;
    margin-bottom: 4px
}

.how-to-use_info .content-item .text_h2 .num {
    width: 28px;
    height: 28px;
    background: #363537;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: Roboto, sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    color: #fff
}

.how-to-use_info .content-item .text_h3 {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-weight: 700;
    font-size: 14px;
    line-height: 22px;
    color: #fff;
    gap: 12px
}

.how-to-use_info .content-item .text_h3 .symbol {
    color: #02c076
}

.how-to-use_info .content-item .text_paragraph {
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #fff;
    opacity: .8
}

.how-to-use_info .content-item .text .main_button {
    align-items: center;
    width: unset;
    box-sizing: border-box;
    padding-top: 0;
    padding-bottom: 0;
    font-weight: 700;
    font-size: 16px;
    line-height: 48px;
    gap: 8px;
    height: 48px
}

@media (max-width: 1079px) {
    .how-to-use_info .content-item .text .main_button {
        display: none
    }
}

.how-to-use_info .content-item img {
    max-width: 432px;
    box-sizing: border-box
}

.notification {
    position: fixed;
    bottom: 15%;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease-in-out;
    z-index: 999999
}

.notification-text {
    background: #02C076;
    box-shadow: 0 4px 12px #1b1a1ca3;
    border-radius: 24px;
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    color: #29282a;
    padding: 8px 20px 8px 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px
}

.notification-text svg path {
    fill: #29282a;
    fill-opacity: 1
}

.exchange-content {
    margin-top: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center
}

.exchange-form {
    margin-top: 40px;
    max-width: 520px;
    width: 100%;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 100px
}

@media (max-width: 1079px) {
    .exchange-form {
        padding: 0 12px;
        box-sizing: border-box;
        border-radius: 0
    }

    .exchange-form__details {
        border-radius: 16px 16px 0 0
    }

    .exchange-form__finish {
        border-radius: 0 0 16px 16px
    }
}

.exchange-form__details {
    border-radius: 20px 20px 0 0
}

.exchange-form__finish {
    border-radius: 0 0 20px 20px
}

.exchange-form-step {
    background: #29282A;
    display: flex;
    flex-direction: column;
    transition: all .3s ease-in-out
}

.exchange-form-step .title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    box-sizing: border-box;
    transition: all .3s ease-in-out
}

.exchange-form-step .title-block {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 12px
}

.exchange-form-step .title .num {
    background: rgba(255, 255, 255, .12);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: Roboto, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    color: #29282a;
    transition: all .3s ease-in-out
}

.exchange-form-step .title .text {
    font-family: Roboto, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #ffffff61;
    transition: all .1s ease-in-out
}

.exchange-form-step .title .uid {
    font-weight: 500;
    font-size: 12px;
    line-height: 24px;
    color: #ffffff61;
    display: flex;
    flex-direction: row;
    gap: 6px;
    -webkit-user-select: none;
    user-select: none
}

@media (max-width: 1079px) {
    .exchange-form-step .title .uid_desktop {
        display: none
    }
}

.exchange-form-step .title .uid_mobile {
    display: none
}

@media (max-width: 1079px) {
    .exchange-form-step .title .uid_mobile {
        display: block
    }
}

.exchange-form-step .title .uid span {
    color: #02c076;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none
}

.exchange-form-step .title .uid svg path {
    transition: all .3s ease-in-out
}

@media (min-width: 1079px) {
    .exchange-form-step .title .uid:hover {
        cursor: pointer
    }

    .exchange-form-step .title .uid:hover svg path {
        fill: #02c076;
        fill-opacity: 1
    }
}

.exchange-form-step__active .title {
    box-sizing: border-box;
    padding: 28px 20px 24px
}

@media (max-width: 1079px) {
    .exchange-form-step__active .title {
        padding: 16px 12px
    }
}

.exchange-form-step__active .title .num {
    background: #02C076
}

.exchange-form-step__active .title .text {
    font-weight: 900;
    font-size: 24px;
    line-height: 24px;
    color: #fff
}

@media (max-width: 1079px) {
    .exchange-form-step__active .title .text {
        font-size: 16px
    }
}

.exchange-form-step__active .title.processing {
    padding: 28px 20px 36px
}

@media (max-width: 1079px) {
    .exchange-form-step__active .title.processing {
        padding: 16px 12px
    }
}

.exchange-form-step__error .title {
    box-sizing: border-box;
    padding: 28px 20px 24px
}

@media (max-width: 1079px) {
    .exchange-form-step__error .title {
        padding: 16px 12px
    }
}

.exchange-form-step__error .title .num {
    background: #434244
}

.exchange-form-step__error .title .text {
    color: var(--white-38, rgba(255, 255, 255, .38));
    font-size: 24px;
    font-style: normal;
    font-weight: 900;
    line-height: 24px
}

@media (max-width: 1079px) {
    .exchange-form-step__error .title .text {
        font-size: 16px
    }
}

.exchange-form-step__error .title.processing {
    padding: 28px 20px 36px
}

@media (max-width: 1079px) {
    .exchange-form-step__error .title.processing {
        padding: 16px 12px
    }
}

.exchange-form-step__kyc .title {
    box-sizing: border-box;
    padding: 28px 20px 24px
}

@media (max-width: 1079px) {
    .exchange-form-step__kyc .title {
        padding: 16px 12px
    }
}

.exchange-form-step__kyc .title .num {
    background: #FF783E
}

.exchange-form-step__kyc .title .text {
    font-weight: 900;
    font-size: 24px;
    line-height: 24px;
    color: #fff
}

.exchange-form-step__completed .title {
    box-sizing: border-box;
    padding: 16px 20px;
    cursor: pointer
}

@media (max-width: 1079px) {
    .exchange-form-step__completed .title {
        padding: 16px 12px
    }
}

.exchange-form-step__completed .title .num {
    background: #02C076
}

.exchange-form-step__completed .title .unfold {
    height: 24px
}

.exchange-form-step__completed .title .unfold svg path {
    transition: all .3s ease-in-out
}

.exchange-form-step__completed .title:hover .text {
    color: #fff
}

.exchange-form-step__completed .title:hover .unfold {
    height: 24px
}

.exchange-form-step__completed .title:hover .unfold svg path {
    fill: #02c076;
    fill-opacity: 1
}

.exchange-form-step__overdue .title {
    box-sizing: border-box;
    padding: 28px 20px 24px
}

.exchange-form-step__overdue .title .num {
    background: #FF783E
}

.exchange-form-step_content {
    padding: 0 44px 32px;
    box-sizing: border-box
}

@media (max-width: 1079px) {
    .exchange-form-step_content {
        padding: 0 12px 20px
    }
}

.exchange-form-step_content .calc-form {
    position: relative
}

.exchange-form-step_content .calc-form_loader img {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto
}

@media (max-width: 1079px) {
    .exchange-form-step_content .calc-form {
        max-width: 100%
    }

    .exchange-form-step_content .calc-form .you-get>.text-input {
        max-width: 100%
    }

    .exchange-form-step_content .calc-form .you-send>.text-input {
        max-width: 100%
    }
}

.exchange-form-step_content .calc-form .fixed-rate {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 16px 0;
    padding-right: 12px
}

@media (max-width: 1079px) {
    .exchange-form-step_content .calc-form .fixed-rate {
        margin-bottom: 16px
    }
}

.exchange-form-step_content .calc-form .fixed-rate_text {
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    display: flex;
    align-items: center;
    text-align: center;
    gap: 6px;
    color: #02c076;
    margin-left: 8px;
    cursor: pointer
}

@media (min-width: 1079px) {
    .exchange-form-step_content .calc-form .fixed-rate_text:hover {
        cursor: pointer;
        color: #01ad6a
    }

    .exchange-form-step_content .calc-form .fixed-rate_text:hover svg path {
        fill: #01ad6a
    }
}

.exchange-form-step_content .calc-form .fixed-rate_floating {
    color: #ffffff61
}

.exchange-form-step_content .calc-form .fixed-rate_floating svg path {
    fill: #ffffff61
}

.exchange-form-step_content .calc-form .fixed-rate .swap-coins {
    cursor: pointer;
    transition: all .3s ease-in-out
}

.exchange-form-step_content .calc-form .fixed-rate .swap-coins:hover {
    transform: rotate(180deg)
}

.exchange-form-step_content .calc-form .fixed-rate .swap-coins:hover path {
    fill: #01ad6a
}

.exchange-form-step_content .calc-form .fixed-rate_block {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px
}

.exchange-form-step_content .calc-form .fixed-rate_block .info_icon {
    position: relative;
    display: grid;
    place-items: center
}

.exchange-form-step_content .calc-form .fixed-rate_block .info_icon svg path {
    transition: all .3s ease-in-out
}

.exchange-form-step_content .calc-form .fixed-rate_block .info_icon svg:hover {
    cursor: pointer
}

.exchange-form-step_content .calc-form .fixed-rate_block .info_icon svg:hover path {
    fill: #02c076;
    fill-opacity: 1
}

.exchange-form-step_content .calc-form .fixed-rate_block .info_icon--text {
    position: absolute;
    z-index: 999;
    top: calc(100% + 8px);
    left: -100px;
    width: 244px;
    background: #363537;
    box-shadow: 0 4px 12px #1b1a1ca3;
    border-radius: 8px;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    color: #fff;
    padding: 12px;
    box-sizing: border-box
}

@media (max-width: 1079px) {
    .exchange-form-step_content .calc-form .fixed-rate_block .info_icon--text {
        left: unset
    }
}

.exchange-form-step_content .calc-form .fixed-rate_block .info_icon--text>h4 {
    font-size: 14px;
    font-weight: 700;
    color: #02c076;
    margin: 0 0 4px
}

.exchange-form-step_content .calc-form .recipient_address {
    position: relative
}

.exchange-form-step_content .calc-form .recipient_address .error-text {
    padding-top: 8px;
    font-size: 12px;
    color: #ff783e;
    padding-left: 12px
}

.exchange-form-step_content .calc-form .recipient_address-qr {
    position: absolute;
    right: 0;
    top: 0;
    height: 60px;
    padding: 0 12px;
    box-sizing: border-box;
    display: flex;
    place-items: center;
    cursor: pointer
}

.exchange-form-step_content .calc-form .recipient_address-qr svg path {
    transition: all .3s ease-in-out
}

.exchange-form-step_content .calc-form .recipient_address-qr:hover svg path {
    fill: #02c076;
    fill-opacity: 1
}

.exchange-form-step_content .calc-form .main_button {
    margin-top: 40px
}

@media (max-width: 1079px) {
    .exchange-form-step_content .calc-form .main_button {
        max-width: 100%;
        margin-top: 20px
    }
}

.exchange-form-step_content .calc-form .input-state {
    margin-top: 16px
}

.exchange-form-step_content .calc-form .you-send .error-text {
    padding-top: 8px;
    font-size: 12px;
    color: #ff783e;
    padding-left: 12px
}

.exchange-form-step_content .calc-form .exchange-rate {
    display: flex;
    flex-direction: row;
    align-items: center
}

.exchange-form-step_content .calc-form .exchange-rate_cursNum {
    display: flex;
    flex-direction: row
}

.exchange-form-step_content .calc-form .exchange-rate_cursNum-value {
    color: #fff;
    font-weight: 500
}

.exchange-form-step_content .calc-form .exchange-rate--loader {
    width: 100px;
    height: 14px
}

.exchange-form-step_content .calc-form .exchange-rate_symbol {
    color: #ffffff61;
    margin: 0 5px
}

.exchange-form-step_content .main_button {
    max-width: 100%
}

.exchange-form-step_content_qr-fees {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%
}

.exchange-form-step_content_qr-fees .qr-block {
    margin-top: 16px;
    padding: 10px;
    background: white;
    border-radius: 8px;
    display: flex;
    box-sizing: border-box
}

@media (max-width: 1079px) {
    .exchange-form-step_content_qr-fees .qr-block {
        padding: 0;
        border-radius: 8px;
        overflow: hidden
    }
}

.exchange-form-step_content--fees {
    padding: 0 12px;
    margin: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.exchange-form-step_content--fees_item {
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: #ffffff61
}

.exchange-form-step_content--fees_item span {
    margin-left: 2px;
    color: #fff
}

.exchange-form-step_content--fees .checkbox {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    margin-top: 18px;
    cursor: pointer
}

.exchange-form-step_content--fees .checkbox svg {
    min-width: 24px
}

.exchange-form-step_content--fees .checkbox-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #ffffff61;
    padding-top: 2px
}

.exchange-form-step_content--fees .checkbox-text a {
    color: #02c076;
    text-decoration: underline;
    text-decoration-color: #ffffff61;
    text-underline-offset: 3px;
    transition: all .3s ease-in-out
}

.exchange-form-step_content--fees .checkbox-text a:hover {
    text-decoration-color: #02c076
}

@media (max-width: 1079px) {
    .exchange-form-step_content--fees .checkbox-text {
        line-height: 24px
    }
}

.exchange-form-step .server-disabled-block {
    display: flex;
    flex-direction: column;
    padding: 17px 0 44px;
    border-radius: 20px;
    background: var(--gray-card, #29282A);
    -webkit-backdrop-filter: blur(13px);
    backdrop-filter: blur(13px)
}

@media (max-width: 1089px) {
    .exchange-form-step .server-disabled-block {
        border-radius: 16px;
        padding: 20px 0 28px
    }
}

.exchange-form-step .server-disabled-block .gear-icon {
    margin: 0 auto 25px
}

@media (max-width: 1089px) {
    .exchange-form-step .server-disabled-block .gear-icon {
        margin: 0 auto 16px
    }
}

.exchange-form-step .server-disabled-block h3 {
    margin: 0 0 16px;
    color: #fff;
    text-align: center;
    font-family: Roboto, sans-serif;
    font-size: 24px;
    font-weight: 900;
    line-height: 24px
}

@media (max-width: 1089px) {
    .exchange-form-step .server-disabled-block h3 {
        margin-bottom: 8px;
        font-size: 16px;
        font-weight: 900;
        line-height: 24px
    }
}

.exchange-form-step .server-disabled-block p {
    margin: 0 auto 32px;
    width: 100%;
    max-width: 320px;
    color: var(--white-38, rgba(255, 255, 255, .38));
    text-align: center;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px
}

@media (max-width: 1089px) {
    .exchange-form-step .server-disabled-block p {
        margin-bottom: 16px;
        font-size: 14px;
        font-weight: 400;
        line-height: 20px
    }
}

.exchange-form-step .server-disabled-block .sockets-container {
    display: flex;
    margin-bottom: 44px;
    gap: 26px;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    opacity: 20%
}

.exchange-form-step .server-disabled-block .sockets-container>svg {
    flex-shrink: 0
}

.exchange-form-step .server-disabled-block .support-button {
    display: flex;
    gap: 8px;
    margin: 0 auto;
    width: fit-content;
    cursor: pointer;
    color: var(--red, #FF783E);
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px
}

.exchange-form_content {
    width: 100%;
    padding: 0 44px 32px;
    box-sizing: border-box
}

@media (max-width: 1079px) {
    .exchange-form_content {
        padding: 0 12px 20px;
        box-sizing: border-box
    }
}

.exchange-form_content-title {
    padding: 0 12px;
    font-family: Roboto, sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 36px;
    line-height: 38px;
    color: #fff
}

@media (max-width: 1079px) {
    .exchange-form_content-title {
        padding: 0 8px;
        box-sizing: border-box;
        font-size: 28px;
        line-height: 30px
    }
}

.exchange-form_content-desc {
    padding: 0 12px;
    margin-top: 16px;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: #ffffff61
}

@media (max-width: 1079px) {
    .exchange-form_content-desc {
        padding: 0 8px;
        box-sizing: border-box
    }
}

.exchange-form_content-remaining-timer {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 8px;
    align-items: center;
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    color: #02c076;
    margin-top: 16px;
    margin-bottom: 20px
}

.exchange-form_content--steps {
    padding: 0;
    box-sizing: border-box;
    margin-top: 32px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    height: 78px
}

.exchange-form_content--steps__item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-top: 8px;
    box-sizing: border-box;
    border-radius: 4px;
    overflow: hidden;
    height: fit-content
}

.exchange-form_content--steps__item-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 6px;
    padding: 0 6px 12px;
    box-sizing: border-box
}

.exchange-form_content--steps__item .text {
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: #ffffff61;
    text-align: center
}

@media (max-width: 1079px) {
    .exchange-form_content--steps__item .text-desktop {
        display: none
    }
}

.exchange-form_content--steps__item .text-mobile {
    display: none
}

@media (max-width: 1079px) {
    .exchange-form_content--steps__item .text-mobile {
        display: flex
    }
}

.exchange-form_content--steps__item-active {
    background: #363537
}

.exchange-form_content--steps__item-active .text {
    color: #02c076
}

.exchange-form_content--steps__item-active svg path {
    fill: #02c076;
    fill-opacity: 1
}

.exchange-form_content--steps__item-overdue {
    background: #363537
}

.exchange-form_content--steps__item-overdue .text {
    color: #ff783e
}

.exchange-form_content--steps__item-overdue svg path {
    fill: #ff783e;
    fill-opacity: 1
}

.exchange-form_content--steps__item-passed .text {
    color: #02c076
}

.exchange-form_content--steps__item-passed svg path {
    fill: #02c076;
    fill-opacity: 1
}

.exchange-form_content--steps-completed {
    margin: 24px 0 48px;
    padding: 0 44px;
    box-sizing: border-box
}

.exchange-form_content--steps-completed .text {
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: #02c076
}

@media (max-width: 1079px) {
    .exchange-form_content .main_button {
        max-width: 100%;
        margin-top: 24px
    }
}

.exchange-form .discount-info {
    display: inline;
    margin: 0;
    padding: 0 0 0 5px;
    color: #02c076;
    cursor: pointer
}

@media (max-width: 1079px) {
    .exchange-form .discount-info {
        display: block;
        padding: 5px 0 0
    }
}

.exchange-form .motivation-banner {
    display: flex;
    position: relative;
    flex-direction: column;
    padding: 24px 44px 28px;
    width: 100%;
    border-radius: 0 0 20px 20px;
    background: var(--green, #02C076);
    box-sizing: border-box;
    overflow: hidden
}

@media (max-width: 1079px) {
    .exchange-form .motivation-banner {
        padding: 12px 20px 20px;
        border-radius: 0 0 6px 6px
    }
}

.exchange-form .motivation-banner>h3 {
    margin: 0 0 6px;
    color: var(--gray-card, #29282A);
    font-size: 24px;
    font-style: normal;
    font-weight: 900;
    line-height: 28px
}

@media (max-width: 1079px) {
    .exchange-form .motivation-banner>h3 {
        font-size: 20px;
        font-style: normal;
        font-weight: 900;
        line-height: 24px
    }
}

@media (max-width: 1079px) and (max-width: 450px) {
    .exchange-form .motivation-banner>h3 {
        width: 185px
    }
}

.exchange-form .motivation-banner>p {
    margin: 0 0 20px;
    width: 215px;
    color: var(--gray-controls, #363537);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px
}

@media (max-width: 1079px) {
    .exchange-form .motivation-banner>p {
        margin: 0 0 14px;
        font-weight: 400;
        width: 130px
    }
}

@media (max-width: 1079px) and (max-width: 450px) {
    .exchange-form .motivation-banner>p {
        width: 118px
    }
}

.exchange-form .motivation-banner>img {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 180px
}

@media (max-width: 1079px) {
    .exchange-form .motivation-banner>img {
        height: 160px
    }
}

.exchange-form .motivation-banner>button {
    display: inline-flex;
    height: 40px;
    width: 158px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    border-radius: 6px;
    background: var(--gray-card, #29282A);
    box-sizing: border-box;
    border: none;
    color: var(--white-100, #FFF);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    cursor: pointer
}

@media (max-width: 1079px) {
    .exchange-form .motivation-banner>button {
        height: 32px;
        width: 149px;
        font-size: 14px;
        font-weight: 600;
        line-height: 24px
    }
}

.input-state {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-right: 2px;
    border-radius: 8px;
    overflow: hidden
}

.input-state input,
.input-state textarea {
    background: #363537;
    width: 100%;
    height: 60px;
    box-sizing: border-box;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    padding: 26px 26px 10px 12px;
    display: block;
    outline: none;
    border: none
}

@media (max-width: 1079px) {

    .input-state input,
    .input-state textarea {
        font-weight: 600;
        font-size: 16px;
        line-height: 24px
    }
}

.input-state input:focus,
.input-state textarea:focus {
    outline: none
}

.input-state label {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #ffffff61;
    position: absolute;
    pointer-events: none;
    left: 12px;
    top: 30%;
    transition: .2s ease all;
    -moz-transition: .2s ease all;
    -webkit-transition: .2s ease all
}

.input-state svg {
    position: absolute;
    left: 12px;
    top: 16px
}

.input-state input:focus~label,
.input-state input:valid~label,
.input-state textarea:focus~label,
.input-state textarea:valid~label {
    top: 8px;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: #02c076
}

.input-state-readonly {
    position: relative
}

.input-state-readonly input:focus {
    outline: none;
    border: 1px solid #E2E2E2
}

.input-state-readonly label {
    top: 8px;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: #8e8e8e
}

.input-state-readonly .loader-curs {
    animation: rotate .875s linear 0s infinite normal;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 999;
    top: 16px;
    right: 16px
}

.input-state-readonly .loader-curs svg path {
    fill: #f24f34;
    opacity: .3
}

.input-state_textarea textarea {
    height: 160px;
    resize: none;
    padding-left: 16px;
    font-family: Inter, sans-serif
}

.input-state_textarea label {
    top: 18px;
    left: 16px
}

.input-state:focus-within {
    box-shadow: 0 0 0 2px #02c076
}

.input-state_error label {
    color: #ff783e
}

.input-state_error input:focus~label,
.input-state_error input:valid~label,
.input-state_error textarea:focus~label,
.input-state_error textarea:valid~label {
    top: 8px;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: #ff783e
}

.input-state_error:focus-within {
    box-shadow: 0 0 0 2px #ff783e
}

.create-email {
    position: fixed;
    z-index: 9999999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background: rgba(27, 26, 28, .72);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    display: grid;
    place-items: center
}

@media (max-width: 1079px) {
    .create-email_block {
        width: 100%;
        align-self: center
    }
}

.create-email_popup {
    border-radius: 12px;
    background: var(--gray-card, #29282A);
    box-shadow: 0 4px 12px #1b1a1ca3;
    padding: 24px;
    box-sizing: border-box;
    max-width: 464px;
    width: 100%;
    position: relative
}

@media (max-width: 1079px) {
    .create-email_popup {
        background: var(--black, #1B1A1C);
        max-width: 100%;
        height: 100dvh;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding-top: 180px
    }
}

.create-email_popup .error-text {
    padding-top: 8px;
    font-size: 12px;
    color: #ff783e;
    padding-left: 12px
}

.create-email_popup .close {
    display: flex;
    position: absolute;
    right: 8px;
    top: 8px;
    cursor: pointer
}

.create-email_popup .close svg path {
    transition: all .3s ease-in-out
}

.create-email_popup .close:hover svg path {
    fill: #02c076;
    fill-opacity: 1
}

@media (max-width: 1079px) {
    .create-email_popup .close {
        background: #29282A;
        border-radius: 8px;
        width: 40px;
        height: 40px;
        display: grid;
        place-items: center;
        top: 12px;
        right: 12px
    }

    .create-email_popup .close svg path {
        fill: #02c076;
        fill-opacity: 1
    }
}

.create-email_popup .title {
    color: var(--white-100, #FFF);
    font-family: Roboto, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 20px
}

@media (max-width: 1079px) {
    .create-email_popup .title {
        margin-bottom: 16px;
        font-size: 36px;
        line-height: 38px;
        font-weight: 900;
        text-align: center
    }
}

.create-email_popup .main_button-error {
    background: #FF783E
}

@media (max-width: 1079px) {
    .create-email_popup .main_button-error {
        margin-top: 200px;
        max-width: 100%
    }
}

.create-email_popup .buttons {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-top: 16px
}

@media (max-width: 1079px) {
    .create-email_popup .buttons {
        width: 100%
    }
}

.create-email_popup .buttons--item {
    width: 200px;
    height: 60px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: none;
    color: #02c076;
    font-family: Roboto, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    border-radius: 8px;
    cursor: pointer
}

@media (max-width: 1079px) {
    .create-email_popup .buttons--item {
        width: 100%
    }
}

.create-email_popup .buttons--item_green {
    background: #02C076;
    color: #29282a
}

.create-email_popup .buttons--item_disabled {
    background: rgba(255, 255, 255, .04);
    color: #ffffff61;
    cursor: default
}

.create-email_popup .buttons--item_disabled svg path {
    fill: #ffffff61
}

.create-email .close {
    display: flex;
    position: absolute;
    right: 8px;
    top: 8px;
    cursor: pointer;
    z-index: 999
}

.create-email .close svg path {
    transition: all .3s ease-in-out
}

.create-email .close:hover svg path {
    fill: #02c076;
    fill-opacity: 1
}

@media (max-width: 1079px) {
    .create-email .close {
        background: #29282A;
        border-radius: 8px;
        width: 40px;
        height: 40px;
        display: grid;
        place-items: center;
        top: 12px;
        right: 12px
    }

    .create-email .close svg path {
        fill: #02c076;
        fill-opacity: 1
    }
}

.create-email .popup {
    background: rgba(27, 26, 28, .72);
    position: fixed;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center
}

.create-email .popup_form {
    background: #29282A;
    box-shadow: 0 4px 12px #1b1a1ca3;
    border-radius: 12px;
    margin: auto;
    padding: 24px;
    box-sizing: border-box;
    position: relative;
    max-width: 360px;
    width: 100%
}

@media (max-width: 1079px) {
    .create-email .popup_form {
        height: 100%;
        background: #1B1A1C;
        display: flex
    }
}

.create-email .popup_form_text {
    align-self: center
}

.create-email .popup_form_text .title {
    font-family: Roboto, sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 24px;
    line-height: 24px;
    color: #fff
}

@media (max-width: 1079px) {
    .create-email .popup_form_text .title {
        font-weight: 900;
        font-size: 36px;
        line-height: 38px;
        text-align: center;
        letter-spacing: -.02em
    }
}

.create-email .popup_form_text .desc {
    margin-top: 20px;
    margin-bottom: 32px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #fff
}

@media (max-width: 1079px) {
    .create-email .popup_form_text .desc {
        text-align: center;
        margin-top: 16px;
        margin-bottom: 0
    }
}

@media (max-width: 1079px) {
    .create-email .popup_form .main_button {
        max-width: 312px;
        position: fixed;
        bottom: 24px
    }
}

.exchange-form_content--completed {
    margin-top: 12px;
    padding: 0 44px 32px;
    box-sizing: border-box
}

@media (max-width: 1079px) {
    .exchange-form_content--completed {
        padding: 0 12px 20px;
        margin-top: 4px
    }
}

@media (max-width: 700px) {
    .exchange-form_content-title {
        padding: 0 8px;
        box-sizing: border-box
    }
}

.exchange-form_content-date {
    margin-top: 16px;
    margin-bottom: 32px;
    font-weight: 500;
    font-size: 12px;
    line-height: 20px;
    color: #ffffff61;
    padding: 0 8px
}

.exchange-form_content-date span {
    color: #fff
}

@media (max-width: 700px) {
    .exchange-form_content-date {
        margin-bottom: 20px;
        box-sizing: border-box
    }
}

.exchange-form_content-deposits {
    display: flex;
    flex-direction: column;
    gap: 32px
}

.exchange-form_content-deposits .item {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.exchange-form_content-deposits .item-amount {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 16px
}

.exchange-form_content-deposits .item-amount .amount {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.exchange-form_content-deposits .item-amount .text {
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: #ffffff61
}

.exchange-form_content-deposits .item-amount .value {
    font-weight: 600;
    font-size: 22px;
    line-height: 24px;
    color: #fff
}

.exchange-form_content-deposits .item-amount .coin {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px
}

.exchange-form_content-deposits .item-amount .coin img {
    max-width: 28px;
    border-radius: 60%;
    overflow: hidden
}

.exchange-form_content-deposits .item-amount .coin-info {
    display: flex;
    flex-direction: column;
    gap: 2px
}

.exchange-form_content-deposits .item-amount .coin-info .name {
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: #fff
}

.exchange-form_content-deposits .item-amount .coin-info .network {
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
    color: #ffffff61
}

.exchange-form_content-deposits .item-address {
    overflow: hidden
}

.exchange-form_content-deposits .item-addresses {
    display: flex;
    flex-direction: column
}

.exchange-form_content-deposits .item-addresses .address {
    font-weight: 500;
    font-size: 12px;
    line-height: 20px;
    color: #ffffff61;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px
}

.exchange-form_content-deposits .item-addresses .address-name {
    position: relative;
    width: 358px;
    font-weight: 500;
    font-size: 12px;
    line-height: 20px;
    color: #ffffff61;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 4px
}

@media (max-width: 1079px) {
    .exchange-form_content-deposits .item-addresses .address-name {
        width: 100%;
        max-width: 356px
    }
}

.exchange-form_content-deposits .item-addresses .address-name .desc {
    min-width: max-content
}

.exchange-form_content-deposits .item-addresses .address-name .value {
    width: 100%;
    color: #02c076;
    cursor: pointer;
    text-overflow: ellipsis;
    overflow: hidden;
    box-sizing: border-box
}

.exchange-form_content-deposits .item-addresses .address-name_td {
    width: 88%
}

@media (max-width: 1079px) {
    .exchange-form_content-deposits .item-addresses .address-name_td {
        width: 81%
    }
}

.exchange-form_content-deposits .item-addresses .address .you-send-address-copy {
    width: 52px
}

@media (max-width: 1079px) {
    .exchange-form_content-deposits .item-addresses .address .you-send-address-copy {
        width: 95px
    }
}

@media (max-width: 1079px) and (max-width: 540px) {
    .exchange-form_content-deposits .item-addresses .address .you-send-address-copy {
        width: 15%
    }
}

.exchange-form_content-deposits .item-addresses .address-links {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 6px;
    width: 100%
}

.exchange-form_content-deposits .item-addresses .address-links a {
    display: grid
}

.exchange-form_content-deposits .item-addresses .address-links_td {
    width: 12%
}

@media (max-width: 1079px) {
    .exchange-form_content-deposits .item-addresses .address-links_td {
        width: 20%
    }
}

@media (max-width: 1079px) and (max-width: 540px) {
    .exchange-form_content-deposits .item-addresses .address-links_td {
        width: 15%
    }
}

.exchange-form_content-deposits .item-addresses .address svg {
    cursor: pointer
}

.exchange-form_content-deposits .item-addresses .address svg path {
    transition: all .3s ease-in-out
}

.exchange-form_content-deposits .item-addresses .address svg:hover path {
    fill: #02c076;
    fill-opacity: 1
}

.exchange-form_content-deposits_inputs {
    gap: 16px
}

.exchange-form_content-deposits_inputs .item {
    background: #363537;
    border-radius: 8px;
    padding: 10px 12px;
    box-sizing: border-box
}

.exchange-form_content-deposits_inputs .item__copy {
    position: relative;
    padding: 10px 44px 10px 12px;
    cursor: pointer
}

.exchange-form_content-deposits_inputs .item__copy:hover svg path {
    fill: #02c076;
    fill-opacity: 1
}

.exchange-form_content-deposits_inputs .item__copy svg {
    position: absolute;
    right: 12px;
    top: 0;
    bottom: 0;
    margin: auto 0
}

.exchange-form_content-deposits_inputs .item__copy svg path {
    transition: all .3s ease-in-out
}

.exchange-form_content-deposits_inputs .item-amount {
    justify-content: space-between;
    align-items: center
}

.exchange-form_content-deposits_inputs .item-amount .amount {
    gap: 0
}

.exchange-form_content-deposits_inputs .item-amount .coin {
    min-width: 84px
}

.exchange-form_content-deposits_inputs .item-address .address .text {
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: #ffffff61
}

.exchange-form_content-deposits_inputs .item-address .address .value {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    word-wrap: anywhere
}

.exchange-form_content-deposits_inputs .fixed-rate {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center
}

@media (max-width: 1079px) {
    .exchange-form_content-deposits_inputs .fixed-rate {
        margin-bottom: 16px
    }
}

.exchange-form_content-deposits_inputs .fixed-rate_text {
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    display: flex;
    align-items: center;
    text-align: center;
    gap: 6px;
    color: #01ad6a;
    margin-left: 8px;
    opacity: .4
}

.exchange-form_content-deposits_inputs .fixed-rate_text svg path {
    fill: #01ad6a
}

.exchange-form_content-deposits_inputs .fixed-rate_floating {
    color: #ffffff61
}

.exchange-form_content-deposits_inputs .fixed-rate_floating svg path {
    fill: #ffffff61
}

.exchange-form_content-deposits_inputs .fixed-rate .swap-coins {
    cursor: pointer;
    transition: all .3s ease-in-out
}

.exchange-form_content-deposits_inputs .fixed-rate .swap-coins path {
    fill: #01ad6a;
    fill-opacity: .4
}

@media (max-width: 700px) {
    .exchange-form_content-deposits {
        gap: 24px;
        box-sizing: border-box
    }
}

.exchange-form_content-trustpilot {
    border-radius: 8px;
    background: var(--gray-controls, #363537);
    padding: 10px 16px 11px;
    box-sizing: border-box;
    width: 100%;
    position: relative;
    cursor: pointer;
    display: flex;
    margin-bottom: 32px;
    transition: all .3s ease-in-out
}

.exchange-form_content-trustpilot .bg {
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    transition: all .3s ease-in-out;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    height: 64px
}

.exchange-form_content-trustpilot .bg svg {
    position: absolute;
    top: -82px;
    right: -93px;
    z-index: 0
}

.exchange-form_content-trustpilot_text {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 99
}

.exchange-form_content-trustpilot_text-desc {
    color: var(--white-38, rgba(255, 255, 255, .38));
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    transition: all .3s ease-in-out
}

.exchange-form_content-trustpilot_text-title {
    color: var(--white-100, #FFF);
    font-family: Roboto, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 8px
}

.exchange-form_content-trustpilot_text-title svg {
    margin-bottom: 3px
}

.exchange-form_content-trustpilot_avatar {
    position: absolute;
    bottom: 0;
    right: 8px;
    display: flex
}

.exchange-form_content-trustpilot_avatar img {
    width: 90px;
    height: auto
}

.exchange-form_content-trustpilot:hover {
    background: #3E3D3F
}

.exchange-form_content-trustpilot:hover .bg {
    opacity: 1
}

.exchange-form_content-trustpilot:hover .exchange-form_content-trustpilot_text-desc {
    color: #02c076
}

@media (max-width: 700px) {
    .exchange-form_content-trustpilot {
        margin-bottom: 24px;
        background: #3E3D3F
    }

    .exchange-form_content-trustpilot .bg {
        opacity: 1
    }

    .exchange-form_content-trustpilot .bg svg {
        position: absolute;
        top: -104px;
        right: -70px;
        z-index: 0;
        max-width: 219px
    }

    .exchange-form_content-trustpilot_text-desc {
        color: #02c076
    }

    .exchange-form_content-trustpilot_text-title {
        font-size: 16px
    }

    .exchange-form_content-trustpilot_avatar {
        right: 0
    }
}

.exchange-form_content .exchange-form-step_content--fees {
    margin-bottom: 0
}

.exchange-form_content .main_button {
    margin-top: 40px;
    gap: 8px;
    font-size: 18px
}

.exchange-form_content .main_button-transparent {
    margin-top: 12px
}

.exchange-form_content .main_button-transparent_padding {
    margin-top: 32px
}

@media (max-width: 700px) {
    .exchange-form_content .main_button {
        margin-top: 32px
    }

    .exchange-form_content .main_button-transparent {
        margin-top: 12px
    }
}

.exchange-form_content .tooltip {
    position: absolute;
    background: #1b1a1c;
    padding: 5px 10px;
    border-radius: 8px;
    transform: translate(-10px);
    bottom: -32px;
    left: 8px;
    z-index: 1
}

@media (max-width: 1079px) {
    .exchange-form_content .tooltip {
        display: none
    }
}

.exchange-form_content-desc-addresses {
    display: flex;
    flex-direction: column
}

.exchange-form_content-desc-addresses .address {
    font-weight: 500;
    font-size: 12px;
    line-height: 20px;
    color: #ffffff61;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 8px
}

.exchange-form_content-desc-addresses .address-name {
    width: 358px;
    font-weight: 500;
    font-size: 12px;
    line-height: 20px;
    color: #ffffff61;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 4px
}

@media (max-width: 1079px) {
    .exchange-form_content-desc-addresses .address-name {
        width: 100%;
        max-width: 356px
    }
}

.exchange-form_content-desc-addresses .address-name .desc {
    min-width: max-content
}

.exchange-form_content-desc-addresses .address-name .value {
    width: 100%;
    color: #02c076;
    text-overflow: ellipsis;
    overflow: hidden;
    box-sizing: border-box
}

.exchange-form_content-desc-addresses .address-name_td {
    width: 88%
}

@media (max-width: 1079px) {
    .exchange-form_content-desc-addresses .address-name_td {
        width: 81%
    }
}

.exchange-form_content-desc-addresses .address-links {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 6px;
    width: 100%
}

.exchange-form_content-desc-addresses .address-links a {
    display: grid
}

.exchange-form_content-desc-addresses .address-links_td {
    width: 12%
}

@media (max-width: 1079px) {
    .exchange-form_content-desc-addresses .address-links_td {
        width: 22%
    }
}

.exchange-form_content-desc-addresses .address svg {
    cursor: pointer
}

.exchange-form_content-desc-addresses .address svg path {
    transition: all .3s ease-in-out
}

.exchange-form_content-desc-addresses .address svg:hover path {
    fill: #02c076;
    fill-opacity: 1
}

.about-features-plates {
    margin-top: 80px;
    width: 100%;
    margin-bottom: 0
}

@media (max-width: 1079px) {
    .about-features-plates {
        margin: 8px 0 48px
    }
}

.about-features-plates_block {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 4px;
    border-radius: 20px;
    overflow: hidden
}

@media (max-width: 1079px) {
    .about-features-plates_block {
        flex-direction: column
    }
}

.about-features-plates--item {
    background: rgba(255, 255, 255, .04);
    padding: 20px 24px 24px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%
}

.about-features-plates--item-content {
    max-width: 221px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.about-features-plates--item .title {
    font-family: Roboto, sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 24px;
    line-height: 28px;
    color: #fff
}

.about-features-plates--item .desc {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #ffffff61
}

.about-hero {
    width: 100%;
    padding: 64px 0 0;
    box-sizing: border-box;
    position: relative;
    overflow: hidden
}

@media (max-width: 1079px) {
    .about-hero {
        padding: 48px 0 0
    }
}

.about-hero__bg {
    position: absolute;
    z-index: 0;
    top: 0;
    width: 100%;
    opacity: .8
}

@media (max-width: 1079px) {
    .about-hero__bg {
        display: none
    }
}

.about-hero .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 100px;
    position: relative;
    z-index: 1;
    padding: 0 16px;
    box-sizing: border-box
}

@media (max-width: 1079px) {
    .about-hero .container {
        flex-direction: column;
        gap: 0
    }
}

.about-hero_content {
    display: flex;
    flex-direction: column;
    max-width: 480px;
    width: 100%
}

@media (max-width: 1079px) {
    .about-hero_content {
        order: 1;
        position: relative;
        top: -32px
    }
}

.about-hero_content .title {
    font-weight: 900;
    font-size: 64px;
    line-height: 72px;
    color: #fff;
    margin-bottom: 28px
}

@media (max-width: 1079px) {
    .about-hero_content .title {
        font-size: 40px;
        line-height: 44px;
        text-align: center;
        margin-bottom: 20px
    }
}

.about-hero_content .title span {
    color: #02c076
}

@media (max-width: 1079px) {
    .about-hero_content .title span {
        color: #fff
    }
}

.about-hero_content .desc {
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #fff;
    opacity: .8;
    margin-bottom: 32px
}

@media (max-width: 1079px) {
    .about-hero_content .desc {
        font-size: 14px;
        line-height: 22px;
        text-align: center;
        margin-bottom: 0
    }
}

.about-hero_content .title2 {
    font-family: Roboto, sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 16px;
    color: #fff
}

@media (max-width: 1079px) {
    .about-hero_content .title2 {
        font-size: 24px;
        line-height: 28px;
        text-align: center;
        margin-bottom: 8px;
        margin-top: 24px
    }
}

@media (max-width: 1079px) {
    .about-hero_img {
        order: 0;
        max-width: 100%
    }
}

@media (max-width: 1079px) {
    .about-hero_img--desktop {
        display: none
    }
}

.about-hero_img--mobile {
    width: 100%
}

@media (min-width: 1080px) {
    .about-hero_img--mobile {
        display: none
    }
}

.about-features {
    width: 100%;
    margin: 120px 0
}

@media (max-width: 1079px) {
    .about-features {
        margin-top: 0;
        margin-bottom: 48px
    }
}

.about-features_block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 40px;
    box-sizing: border-box;
    gap: 96px
}

@media (max-width: 1079px) {
    .about-features_block {
        padding: 0;
        gap: 40px
    }
}

.about-features_block .item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 960px;
    width: 100%
}

@media (max-width: 1079px) {
    .about-features_block .item {
        flex-direction: column-reverse;
        align-items: center
    }
}

.about-features_block .item .text {
    display: flex;
    flex-direction: column;
    max-width: 480px;
    width: 100%;
    gap: 24px;
    position: relative;
    z-index: 1
}

.about-features_block .item .text .title {
    font-weight: 900;
    font-size: 56px;
    line-height: 62px;
    letter-spacing: -.02em;
    color: #fff
}

@media (max-width: 1079px) {
    .about-features_block .item .text .title {
        font-size: 36px;
        line-height: 38px;
        text-align: center
    }
}

.about-features_block .item .text .title span {
    color: #02c076
}

@media (max-width: 1079px) {
    .about-features_block .item .text .title span {
        color: #fff
    }
}

.about-features_block .item .text .desc {
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #fff;
    opacity: .8
}

@media (max-width: 1079px) {
    .about-features_block .item .text .desc {
        text-align: center
    }
}

.about-features_block .item--reverse {
    flex-direction: row-reverse;
    align-self: flex-end
}

@media (max-width: 1079px) {
    .about-features_block .item--reverse {
        flex-direction: column-reverse
    }
}

.about-features_block .item .img {
    height: 168px;
    position: relative;
    width: 100%;
    max-width: 320px
}

.about-features_block .item .img img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0
}

@media (max-width: 1079px) {
    .about-features_img--desktop {
        display: none
    }
}

.about-features_img--mobile {
    width: 100%
}

@media (min-width: 1080px) {
    .about-features_img--mobile {
        display: none
    }
}

.terms-of-use {
    padding-top: 40px;
    padding-bottom: 120px
}

.terms-of-use .terms_block {
    padding: 56px 80px 72px;
    box-sizing: border-box;
    background: #FFF9E3;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    position: relative
}

@media (max-width: 1079px) {
    .terms-of-use .terms_block {
        padding: 24px 16px
    }
}

.terms-of-use .terms_block a {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #0a57c1;
    text-decoration: underline;
    text-decoration-color: #e4decb;
    text-underline-offset: 5px
}

@media (max-width: 1079px) {
    .terms-of-use .terms_block a {
        font-size: 14px;
        line-height: 24px
    }
}

.terms-of-use .terms_block .logo {
    margin: 0 auto 40px
}

.terms-of-use .terms_block .logo-footer {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%
}

.terms-of-use .terms_block .logo-footer .text {
    width: 100%;
    text-align: center;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #1b1a1c;
    opacity: .4
}

.terms-of-use .terms_block .print {
    position: absolute;
    top: 32px;
    right: 32px;
    background: #29282A;
    border-radius: 8px;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: all .3s ease-in-out
}

@media (max-width: 1079px) {
    .terms-of-use .terms_block .print {
        display: none
    }
}

.terms-of-use .terms_block .print:hover {
    opacity: .9
}

.terms-of-use .terms_block .print-text {
    display: flex;
    flex-direction: row;
    width: 106px;
    height: 48px;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #fff9e3
}

.terms-of-use .terms_block .terms_title {
    font-weight: 900;
    font-size: 64px;
    line-height: 72px;
    text-align: center;
    color: #1b1a1c;
    margin-bottom: 8px
}

@media (max-width: 1079px) {
    .terms-of-use .terms_block .terms_title {
        font-size: 40px;
        line-height: 44px
    }
}

.terms-of-use .terms_block .terms_text {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #1b1a1c
}

@media (max-width: 1079px) {
    .terms-of-use .terms_block .terms_text {
        font-size: 14px;
        line-height: 24px;
        gap: 4px
    }
}

.terms-of-use .terms_block .terms_text-center {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    text-align: center;
    color: #1b1a1c;
    opacity: .4;
    margin-bottom: 40px
}

@media (max-width: 1079px) {
    .terms-of-use .terms_block .terms_text-center {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 24px
    }
}

.terms-of-use .terms_block .terms-h2 {
    font-weight: 900;
    font-size: 28px;
    line-height: 32px;
    color: #1b1a1c;
    margin-bottom: 20px;
    margin-top: 32px
}

@media (max-width: 1079px) {
    .terms-of-use .terms_block .terms-h2 {
        font-size: 24px;
        line-height: 28px;
        margin-top: 24px;
        margin-bottom: 16px
    }
}

.terms-of-use .terms_block .terms-list--item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: 16px
}

.terms-of-use .terms_block .terms-list--item-lvl {
    padding-left: 40px
}

@media (max-width: 1079px) {
    .terms-of-use .terms_block .terms-list--item-lvl {
        padding-left: 32px
    }
}

.terms-of-use .terms_block .terms-list--item .num {
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    color: #1b1a1c;
    max-width: 40px;
    width: 100%
}

@media (max-width: 1079px) {
    .terms-of-use .terms_block .terms-list--item .num {
        max-width: 28px;
        min-width: 28px
    }
}

.terms-of-use .terms_block .terms-list--item .symbol {
    max-width: 32px;
    width: 100%;
    font-size: 24px;
    line-height: 20px
}

@media (max-width: 1079px) {
    .terms-of-use .terms_block .terms-list--item .symbol {
        max-width: 28px
    }
}

.terms-of-use .terms_block .buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center
}

.terms-of-use .terms_block .buttons .button {
    padding: 12px 12px 12px 24px;
    background: #29282A;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #fff9e3;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: all .3s ease-in-out
}

.terms-of-use .terms_block .buttons .button:hover {
    opacity: .9
}

.terms-of-use_print {
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
    background: #FFFFFF
}

.terms-of-use_print .terms_block {
    background: none;
    padding-top: 80px;
    max-width: 920px;
    padding-left: 0;
    padding-right: 0;
    margin: 0 auto
}

@media (max-width: 1079px) {
    .terms-of-use_print .terms_block {
        padding-top: 32px
    }

    .terms-of-use_print .terms_block .logo {
        margin-bottom: 24px;
        height: auto;
        margin-top: 48px
    }

    .terms-of-use_print .terms_block .logo svg {
        max-width: 121px;
        height: 32px
    }
}

.print {
    position: fixed;
    top: 88px;
    right: 122px;
    background: #29282A;
    border-radius: 8px;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: all .3s ease-in-out
}

@media (max-width: 1079px) {
    .print {
        display: none
    }
}

.print:hover {
    opacity: .9
}

.print-text {
    display: flex;
    flex-direction: row;
    width: 106px;
    height: 48px;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #fff9e3
}

@media (max-width: 1079px) {
    .print-text {
        display: none
    }
}

.print-mobile {
    display: none;
    position: fixed;
    z-index: 99;
    left: 0;
    bottom: 0;
    background: #29282A;
    border-radius: 0 20px 0 0;
    width: 56px;
    height: 56px;
    place-items: center;
    cursor: pointer;
    transition: all .3s ease-in-out
}

@media (max-width: 1079px) {
    .print-mobile {
        display: grid
    }
}

.print-mobile svg {
    width: 28px;
    height: 28px
}

.spinner svg {
    animation: spin 1s linear infinite
}

@keyframes spin {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(359deg)
    }
}

.create-error {
    position: fixed;
    z-index: 9999999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(27, 26, 28, .72);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    display: grid;
    place-items: center
}

.create-error_popup {
    border-radius: 12px;
    background: var(--gray-card, #29282A);
    box-shadow: 0 4px 12px #1b1a1ca3;
    padding: 24px;
    box-sizing: border-box;
    max-width: 464px;
    width: 100%;
    position: relative
}

@media (max-width: 1079px) {
    .create-error_popup {
        background: var(--black, #1B1A1C);
        max-width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center
    }
}

.create-error_popup svg {
    position: absolute;
    right: 20px;
    top: 20px
}

@media (max-width: 1079px) {
    .create-error_popup svg {
        position: relative;
        right: unset;
        top: unset;
        margin-bottom: 20px
    }
}

.create-error_popup .title {
    color: var(--white-100, #FFF);
    font-family: Roboto, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 20px
}

@media (max-width: 1079px) {
    .create-error_popup .title {
        margin-bottom: 16px;
        text-align: center
    }
}

.create-error_popup .desc {
    max-width: 360px;
    width: 100%;
    color: var(--white-100, #FFF);
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 32px
}

@media (max-width: 1079px) {
    .create-error_popup .desc {
        text-align: center
    }
}

.create-error_popup .buttons {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%
}

@media (max-width: 1079px) {
    .create-error_popup .buttons {
        margin-top: 200px;
        flex-direction: column;
        justify-content: flex-start;
        gap: 12px
    }
}

.create-error_popup .buttons .main_button-error {
    background: #FF783E
}

@media (max-width: 1079px) {
    .create-error_popup .buttons .main_button-error {
        margin-top: 0;
        max-width: 100%
    }
}

.create-error_popup .buttons .main_button-transparent-error {
    color: #ff783e;
    background: none
}

@media (max-width: 1079px) {
    .create-error_popup .buttons .main_button-transparent-error {
        margin-top: 0;
        max-width: 100%
    }
}

.notification-error {
    position: fixed;
    bottom: 15%;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease-in-out;
    z-index: 999999
}

.notification-error-text {
    background: #FF783E;
    box-shadow: 0 4px 12px #1b1a1ca3;
    border-radius: 24px;
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    color: #29282a;
    padding: 8px 20px 8px 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px
}

.notification-error-text svg path {
    fill: #29282a;
    fill-opacity: 1
}

.textarea-state {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-right: 2px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 16px
}

@media (max-width: 1079px) {
    .textarea-state {
        margin-top: 12px
    }
}

.textarea-state textarea {
    margin: 0;
    background: #363537;
    width: 100%;
    resize: none;
    overflow: hidden;
    min-height: 60px;
    height: 60px;
    box-sizing: border-box;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    padding: 26px 26px 10px 12px;
    display: block;
    outline: none;
    border: none
}

@media (max-width: 1079px) {
    .textarea-state textarea {
        font-weight: 600;
        font-size: 16px;
        line-height: 24px
    }
}

.textarea-state textarea:focus {
    outline: none
}

.textarea-state textarea:hover {
    background: linear-gradient(0deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .04)), #363537
}

.textarea-state label {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #ffffff61;
    position: absolute;
    pointer-events: none;
    left: 12px;
    top: 30%;
    transition: .2s ease all;
    -moz-transition: .2s ease all;
    -webkit-transition: .2s ease all
}

.textarea-state svg {
    position: absolute;
    left: 12px;
    top: 16px
}

.textarea-state input:focus~label,
.textarea-state input:valid~label,
.textarea-state textarea:focus~label,
.textarea-state textarea:valid~label {
    top: 8px;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: #02c076
}

.textarea-state-readonly {
    position: relative
}

.textarea-state-readonly input:focus {
    outline: none;
    border: 1px solid #E2E2E2
}

.textarea-state-readonly label {
    top: 8px;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: #8e8e8e
}

.textarea-state-readonly .loader-curs {
    animation: rotate .875s linear 0s infinite normal;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 999;
    top: 16px;
    right: 16px
}

.textarea-state-readonly .loader-curs svg path {
    fill: #f24f34;
    opacity: .3
}

@keyframes rotate {
    to {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg)
    }
}

.textarea-state_textarea textarea {
    height: 160px;
    resize: none;
    padding-left: 16px;
    font-family: Inter, sans-serif
}

.textarea-state_textarea label {
    top: 18px;
    left: 16px
}

.textarea-state:focus-within {
    box-shadow: 0 0 0 2px #02c076
}

.textarea-state_error label {
    color: #ff783e !important
}

.textarea-state_error input:focus~label,
.textarea-state_error input:valid~label,
.textarea-state_error textarea:focus~label,
.textarea-state_error textarea:valid~label {
    top: 8px;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: #ff783e
}

.textarea-state_error:focus-within {
    box-shadow: 0 0 0 2px #ff783e !important
}

.ready-to-swap {
    width: 100%;
    max-width: 600px;
    background: #02C076;
    border-radius: 20px;
    position: relative;
    padding: 24px 0 32px 40px;
    box-sizing: border-box;
    margin: 0 auto 42px;
    min-height: 254px
}

@media (max-width: 1079px) {
    .ready-to-swap {
        max-width: 360px;
        padding: 20px;
        margin-bottom: 64px;
        min-height: 100%
    }
}

.ready-to-swap .close {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 9
}

.ready-to-swap .close path {
    fill: #1b1a1c
}

.ready-to-swap .close:hover {
    cursor: pointer
}

.ready-to-swap img {
    position: absolute;
    bottom: -42px;
    right: 0
}

@media (max-width: 1079px) {
    .ready-to-swap img {
        max-width: 182px;
        bottom: 0;
        right: -10px
    }
}

.ready-to-swap .text {
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.ready-to-swap .text .title {
    font-weight: 900;
    font-size: 36px;
    line-height: 38px;
    letter-spacing: -.02em;
    color: #1b1a1c;
    margin-bottom: 12px;
    max-width: 340px;
    width: 100%
}

@media (max-width: 1079px) {
    .ready-to-swap .text .title {
        max-width: 215px;
        font-weight: 900;
        font-size: 28px;
        line-height: 32px;
        color: #1b1a1c;
        margin-bottom: 8px
    }
}

.ready-to-swap .text .desc {
    font-family: Roboto, sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 24px;
    line-height: 29px;
    color: #fff;
    max-width: 185px;
    width: 100%;
    margin-bottom: 21px
}

@media (max-width: 1079px) {
    .ready-to-swap .text .desc {
        font-size: 20px;
        line-height: 22px;
        margin-bottom: 16px;
        max-width: 155px
    }
}

.ready-to-swap .text .button {
    background: #29282A;
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 128px;
    gap: 6px;
    padding: 8px 12px 8px 8px;
    border-radius: 8px;
    box-sizing: border-box;
    transition: all .3s ease-in-out
}

.ready-to-swap .text .button:hover {
    cursor: pointer;
    background: rgba(39, 40, 42, .99)
}

.ready-to-swap .text .button svg {
    max-width: 24px;
    height: auto
}

.ready-to-swap .text .button svg path {
    fill: #fff
}

.table-pagination[data-v-0eb5498a] {
    padding: 0 32px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end
}

@media (max-width: 1079px) {
    .table-pagination[data-v-0eb5498a] {
        padding: 0 16px
    }
}

.table-pagination-block[data-v-0eb5498a] {
    display: flex;
    flex-direction: row;
    justify-content: space-between
}

@media (max-width: 1079px) {
    .table-pagination-block[data-v-0eb5498a] {
        width: 100%
    }
}

.table-pagination-block-select[data-v-0eb5498a] {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: .2px;
    color: #9fa2b4;
    display: flex;
    flex-direction: row;
    margin-right: 62px;
    position: relative
}

@media (max-width: 1079px) {
    .table-pagination-block-select[data-v-0eb5498a] {
        margin-right: 0
    }
}

.table-pagination-block-select .pages-length[data-v-0eb5498a] {
    margin: 0 8px;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: .3px;
    color: #1b1a1c;
    cursor: pointer
}

.table-pagination-block-select .pages-length-dropdown[data-v-0eb5498a] {
    position: absolute;
    z-index: 99;
    background: #FFFFFF;
    box-shadow: 0 4px 24px #0f003a1f;
    border-radius: 8px;
    border: none;
    width: 50px;
    bottom: 20px
}

.table-pagination-block-select .pages-length-dropdown .item[data-v-0eb5498a] {
    padding: 8px 10px;
    transition: all .3s ease-in-out
}

.table-pagination-block-select .pages-length-dropdown .item[data-v-0eb5498a]:hover {
    background: #F7F8FC
}

.table-pagination-block-arrows[data-v-0eb5498a] {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: .2px;
    color: #9fa2b4
}

.table-pagination-block-arrows .arrows[data-v-0eb5498a] {
    display: flex;
    flex-direction: row;
    align-items: center
}

.table-pagination-block-arrows .arrows .arrows-item[data-v-0eb5498a] {
    cursor: pointer;
    margin: 0 16px
}

.page-pagination[data-v-0eb5498a] {
    margin-top: 56px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end
}

@media (max-width: 1079px) {
    .page-pagination[data-v-0eb5498a] {
        margin-top: 32px
    }
}

.page-pagination-block[data-v-0eb5498a] {
    display: flex;
    flex-direction: row;
    justify-content: space-between
}

@media (max-width: 1079px) {
    .page-pagination-block[data-v-0eb5498a] {
        width: 100%
    }
}

.page-pagination-block-select[data-v-0eb5498a] {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: .2px;
    color: #9fa2b4;
    display: flex;
    flex-direction: row;
    margin-right: 62px;
    position: relative
}

@media (max-width: 1079px) {
    .page-pagination-block-select[data-v-0eb5498a] {
        margin-right: 0
    }
}

.page-pagination-block-select .pages-length[data-v-0eb5498a] {
    margin: 0 8px;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: .3px;
    color: #1b1a1c;
    cursor: pointer
}

.page-pagination-block-select .pages-length-dropdown[data-v-0eb5498a] {
    position: absolute;
    z-index: 99;
    background: #FFFFFF;
    box-shadow: 0 4px 24px #0f003a1f;
    border-radius: 8px;
    border: none;
    width: 50px;
    bottom: 20px
}

.page-pagination-block-select .pages-length-dropdown .item[data-v-0eb5498a] {
    padding: 8px 10px;
    transition: all .3s ease-in-out
}

.page-pagination-block-select .pages-length-dropdown .item[data-v-0eb5498a]:hover {
    background: #F7F8FC
}

.page-pagination-block-arrows[data-v-0eb5498a] {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: .2px;
    color: #9fa2b4
}

@media (max-width: 1079px) {
    .page-pagination-block-arrows[data-v-0eb5498a] {
        width: 100%
    }
}

.page-pagination-block-arrows .arrows[data-v-0eb5498a] {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px
}

@media (max-width: 1079px) {
    .page-pagination-block-arrows .arrows[data-v-0eb5498a] {
        width: 100%;
        justify-content: space-between
    }
}

.page-pagination-block-arrows .arrows .arrows-item[data-v-0eb5498a] {
    width: 32px;
    height: 32px;
    padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    background: #02C076;
    border-radius: 8px;
    transition: all .5s ease-in-out;
    cursor: pointer
}

.page-pagination-block-arrows .arrows .arrows-item[data-v-0eb5498a]:hover {
    background: #06F497
}

@media (max-width: 1079px) {
    .page-pagination-block-arrows .arrows .arrows-item[data-v-0eb5498a] {
        padding: 4px
    }
}

.page-pagination-block-arrows .arrows .arrow-prev--disabled[data-v-0eb5498a],
.page-pagination-block-arrows .arrows .arrow-next--disabled[data-v-0eb5498a] {
    opacity: .3;
    cursor: default
}

.page-pagination-block-arrows .pages[data-v-0eb5498a] {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 4px
}

@media (max-width: 1079px) {
    .page-pagination-block-arrows .pages[data-v-0eb5498a] {
        justify-content: center
    }
}

.page-pagination-block-arrows .pages-item[data-v-0eb5498a] {
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #02c076;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    background: #252426;
    border-radius: 8px;
    transition: all .5s ease-in-out
}

@media (max-width: 1079px) {
    .page-pagination-block-arrows .pages-item[data-v-0eb5498a] {
        width: 40px;
        height: 40px
    }
}

.page-pagination-block-arrows .pages-item[data-v-0eb5498a]:hover {
    background: #363537;
    cursor: pointer
}

.page-pagination-block-arrows .pages-item-dots[data-v-0eb5498a] {
    cursor: default
}

.page-pagination-block-arrows .pages-item-dots[data-v-0eb5498a]:hover {
    background: #252426;
    cursor: default
}

.page-pagination-block-arrows .pages .active[data-v-0eb5498a] {
    color: #1b1a1c;
    background: #02C076
}

.loader-wrapper[data-v-5a414d75] {
    display: flex;
    position: fixed;
    justify-content: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(49, 47, 49, .7)
}

.loader-wrapper img[data-v-5a414d75] {
    width: 220px
}

.blog-page[data-v-52793903] {
    width: 100%;
    margin-top: 16px;
    margin-bottom: 120px;
    box-sizing: border-box
}

@media (max-width: 1079px) {
    .blog-page[data-v-52793903] {
        margin-bottom: 48px
    }
}

.blog-page .container[data-v-52793903] {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1080px;
    width: 100%
}

.blog-page .container .h1[data-v-52793903] {
    margin-bottom: 40px;
    font-size: 64px;
    line-height: 64px;
    letter-spacing: .15px;
    font-weight: 900
}

@media (max-width: 1079px) {
    .blog-page .container .h1[data-v-52793903] {
        margin-bottom: 24px;
        font-size: 40px;
        line-height: 40px;
        letter-spacing: -.8px
    }
}

.blog-page .container .tags-container[data-v-52793903] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 80px;
    gap: 8px;
    width: 100%;
    max-width: 600px
}

@media (max-width: 1079px) {
    .blog-page .container .tags-container[data-v-52793903] {
        margin-bottom: 32px;
        gap: 6px
    }
}

.blog-page .container .tags-container .tag-item[data-v-52793903] {
    display: flex;
    height: 40px;
    padding: 0 16px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: #29282A;
    color: #02c076;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    border-radius: 8px;
    box-sizing: border-box;
    cursor: pointer;
    transition: all .3s
}

@media (max-width: 1079px) {
    .blog-page .container .tags-container .tag-item[data-v-52793903] {
        padding: 0 12px;
        height: 36px;
        gap: 2px
    }
}

.blog-page .container .tags-container .tag-item[data-v-52793903]:hover {
    background: #363537
}

.blog-page .container .tags-container .tag-item.active[data-v-52793903] {
    color: #1b1a1c;
    background: #02C076
}

.blog-page .container .tags-container .tag-item .hash-svg[data-v-52793903] {
    margin-left: -8px;
    fill: #02c076 !important
}

@media (max-width: 1079px) {
    .blog-page .container .tags-container .tag-item .hash-svg[data-v-52793903] {
        margin-left: -5px
    }
}

.blog-page .container .tags-container .tag-item.active .hash-svg[data-v-52793903] {
    fill: #1b1a1c !important
}

.blog-page .container .articles-container[data-v-52793903] {
    display: inline-flex;
    align-items: flex-start;
    align-content: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap
}

@media (max-width: 1079px) {
    .blog-page .container .articles-container[data-v-52793903] {
        gap: 12px
    }
}

.blog-page .container .articles-container .article-item[data-v-52793903] {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    max-width: 344px;
    width: 100%;
    min-height: 520px;
    background: #242325;
    border-radius: 20px;
    overflow: hidden
}

@media (max-width: 1079px) {
    .blog-page .container .articles-container .article-item[data-v-52793903] {
        max-width: 328px;
        min-height: 498px
    }
}

.blog-page .container .articles-container .article-item .image-container[data-v-52793903] {
    height: 230px;
    overflow: hidden;
    transition: all .3s
}

@media (max-width: 1079px) {
    .blog-page .container .articles-container .article-item .image-container[data-v-52793903] {
        height: 220px
    }
}

.blog-page .container .articles-container .article-item img[data-v-52793903] {
    height: 230px;
    width: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: all .3s
}

@media (max-width: 1079px) {
    .blog-page .container .articles-container .article-item img[data-v-52793903] {
        height: 220px
    }
}

.blog-page .container .articles-container .article-item .article-content[data-v-52793903] {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    min-height: 242px
}

@media (max-width: 1079px) {
    .blog-page .container .articles-container .article-item .article-content[data-v-52793903] {
        padding: 16px;
        min-height: 246px
    }
}

.blog-page .container .articles-container .article-item .hashtags[data-v-52793903] {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px
}

.blog-page .container .articles-container .article-item .hashtags span[data-v-52793903]:hover {
    cursor: pointer;
    color: #08de8a
}

@media (max-width: 1079px) {
    .blog-page .container .articles-container .article-item .hashtags[data-v-52793903] {
        margin-bottom: 8px
    }
}

.blog-page .container .articles-container .article-item .hashtags span[data-v-52793903] {
    display: flex;
    color: #02c076;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px
}

.blog-page .container .articles-container .article-item .hashtags span .svg[data-v-52793903] {
    width: 22px;
    height: 22px;
    fill: #02c076
}

.blog-page .container .articles-container .article-item .article-title[data-v-52793903] {
    margin: 0 0 12px;
    color: #fff;
    font-family: Roboto, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 900;
    line-height: 28px;
    transition: color .3s;
    cursor: pointer
}

.blog-page .container .articles-container .article-item .article-title[data-v-52793903]:hover {
    color: #02c076
}

.blog-page .container .articles-container .article-item .description[data-v-52793903] {
    margin: 0 0 12px;
    color: #d3d3d3;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px
}

@media (max-width: 1079px) {
    .blog-page .container .articles-container .article-item .description[data-v-52793903] {
        margin-bottom: 20px
    }
}

.blog-page .container .articles-container .article-item .info[data-v-52793903] {
    display: flex;
    justify-content: space-between;
    color: #777778;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px
}

.blog-page .container .articles-container .article-item .info span.time[data-v-52793903] {
    display: flex;
    gap: 4px
}

.blog-page .container .articles-container .article-item:hover .article-content .article-title[data-v-52793903] {
    color: #02c076
}

.blog-page .container .articles-container .article-item:hover .image-container img[data-v-52793903] {
    transform: scale(1.2)
}

@media (max-width: 1079px) {
    .blog-page .container .articles-container .article-item:hover .image-container img[data-v-52793903] {
        transform: scale(1)
    }
}

@font-face {
    font-family: swiper-icons;
    src: url(data:application/font-woff;charset=utf-8;base64,\ d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA);
    font-weight: 400;
    font-style: normal
}

:root {
    --swiper-theme-color: #007aff
}

:host {
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
    z-index: 1
}

.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    display: block
}

.swiper-vertical>.swiper-wrapper {
    flex-direction: column
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    box-sizing: content-box
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
    transform: translateZ(0)
}

.swiper-horizontal {
    touch-action: pan-y
}

.swiper-vertical {
    touch-action: pan-x
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
    display: block
}

.swiper-slide-invisible-blank {
    visibility: hidden
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
    height: auto
}

.swiper-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height
}

.swiper-backface-hidden .swiper-slide {
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
    perspective: 1200px
}

.swiper-3d .swiper-wrapper {
    transform-style: preserve-3d
}

.swiper-3d {
    perspective: 1200px
}

.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
    transform-style: preserve-3d
}

.swiper-css-mode>.swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar {
    display: none
}

.swiper-css-mode>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: start start
}

.swiper-css-mode.swiper-horizontal>.swiper-wrapper {
    scroll-snap-type: x mandatory
}

.swiper-css-mode.swiper-vertical>.swiper-wrapper {
    scroll-snap-type: y mandatory
}

.swiper-css-mode.swiper-free-mode>.swiper-wrapper {
    scroll-snap-type: none
}

.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: none
}

.swiper-css-mode.swiper-centered>.swiper-wrapper:before {
    content: "";
    flex-shrink: 0;
    order: 9999
}

.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: center center;
    scroll-snap-stop: always
}

.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child {
    margin-inline-start: var(--swiper-centered-offset-before)
}

.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper:before {
    height: 100%;
    min-height: 1px;
    width: var(--swiper-centered-offset-after)
}

.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child {
    margin-block-start: var(--swiper-centered-offset-before)
}

.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper:before {
    width: 100%;
    min-width: 1px;
    height: var(--swiper-centered-offset-after)
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10
}

.swiper-3d .swiper-slide-shadow {
    background: rgba(0, 0, 0, .15)
}

.swiper-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    transform-origin: 50%;
    box-sizing: border-box;
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top-color: transparent
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear
}

.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff
}

.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000
}

@keyframes swiper-preloader-spin {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: .3s opacity;
    transform: translateZ(0);
    z-index: 10
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0
}

.swiper-pagination-disabled>.swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
    display: none !important
}

.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: var(--swiper-pagination-bottom, 8px);
    top: var(--swiper-pagination-top, auto);
    left: 0;
    width: 100%
}

.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transform: scale(.33);
    position: relative
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    transform: scale(.33)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    transform: scale(.33)
}

.swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
    display: inline-block;
    border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
    background: var(--swiper-pagination-bullet-inactive-color, #000);
    opacity: var(--swiper-pagination-bullet-inactive-opacity, .2)
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer
}

.swiper-pagination-bullet:only-child {
    display: none !important
}

.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--swiper-pagination-color, var(--swiper-theme-color))
}

.swiper-vertical>.swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
    right: var(--swiper-pagination-right, 8px);
    left: var(--swiper-pagination-left, auto);
    top: 50%;
    transform: translate3d(0, -50%, 0)
}

.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block
}

.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px
}

.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    transition: .2s transform, .2s top
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px)
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translate(-50%);
    white-space: nowrap
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: .2s transform, .2s left
}

.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: .2s transform, .2s right
}

.swiper-pagination-fraction {
    color: var(--swiper-pagination-fraction-color, inherit)
}

.swiper-pagination-progressbar {
    background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, .25));
    position: absolute
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    transform-origin: right top
}

.swiper-horizontal>.swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0
}

.swiper-vertical>.swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
    width: var(--swiper-pagination-progressbar-size, 4px);
    height: 100%;
    left: 0;
    top: 0
}

.swiper-pagination-lock {
    display: none
}

.exchange-block {
    max-width: 100%
}

.exchange-block .buttons {
    display: flex;
    flex-direction: row
}

.exchange-block .buttons--item {
    padding: 18px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, .03);
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #ffffff61;
    width: 100%;
    text-align: center;
    cursor: pointer
}

.exchange-block .buttons--item_active {
    background: #29282A;
    color: #fff
}

.exchange-block .buttons .exchange {
    border-radius: 20px 0 0
}

.exchange-block .buttons .network {
    border-radius: 0 20px 0 0
}

.exchange-block .inputs {
    border-radius: 20px;
    box-sizing: border-box;
    background: #29282A;
    min-height: 100%;
    padding: 12px
}

.exchange-block .inputs-exchange {
    display: flex;
    justify-content: center
}

.exchange-block .inputs .calc-form {
    position: relative;
    max-width: 432px;
    width: 100%
}

.exchange-block .inputs .calc-form_loader {
    background: #29282A;
    min-height: 289px;
    display: grid;
    place-items: center
}

.exchange-block .inputs .calc-form .you-send .error-text {
    position: relative;
    top: 7px;
    left: 12px;
    color: #ff783e;
    font-size: 12px
}

.exchange-block .inputs .calc-form .rate-swap {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px;
    padding-bottom: 8px;
    padding-top: 8px
}

.exchange-block .inputs .calc-form .rate-swap .minimum-amount {
    flex-grow: 1;
    margin-bottom: 0;
    margin-top: 0
}

.exchange-block .inputs .calc-form .rate-swap .swap-coins {
    margin-top: 0;
    width: 24px;
    height: 24px;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    padding-right: 11.6px
}

.exchange-block .inputs .calc-form .rate-swap .swap-coins svg {
    position: relative;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0
}

.exchange-block .inputs .calc-form .rate-swap .rate-swap:before {
    content: "";
    flex-basis: 100%;
    order: 1
}

.exchange-block .inputs .calc-form .rate-swap .rate-swap.min-width-exceeded:before {
    order: 2
}

.exchange-block .inputs .fixed-rate {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
    align-items: center;
    margin-bottom: 16px;
    margin-top: 4px;
    padding: 0 12px
}

.exchange-block .inputs .fixed-rate_text-container {
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    display: flex;
    align-items: center;
    text-align: center;
    gap: 6px;
    color: #02c076;
    margin-left: 8px;
    pointer-events: none
}

.exchange-block .inputs .fixed-rate_text-container:hover {
    cursor: pointer;
    color: #01ad6a
}

.exchange-block .inputs .fixed-rate_text-container:hover svg path {
    fill: #01ad6a
}

.exchange-block .inputs .fixed-rate .title {
    font-family: Roboto, sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 16px;
    line-height: 24px;
    color: #fff
}

.exchange-block .inputs .fixed-rate_floating {
    color: #ffffff61
}

.exchange-block .inputs .fixed-rate_floating svg path {
    fill: #ffffff61
}

.exchange-block .inputs .fixed-rate_block {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px
}

.exchange-block .inputs .fixed-rate_block .info_icon {
    position: relative;
    display: grid;
    place-items: center
}

.exchange-block .inputs .fixed-rate_block .info_icon svg path {
    transition: all .3s ease-in-out
}

.exchange-block .inputs .fixed-rate_block .info_icon svg:hover {
    cursor: pointer
}

.exchange-block .inputs .fixed-rate_block .info_icon svg:hover path {
    fill: #02c076;
    fill-opacity: 1
}

.exchange-block .inputs .fixed-rate_block .info_icon--text {
    position: absolute;
    z-index: 999;
    top: calc(100% + 8px);
    right: -22px;
    left: unset;
    width: 244px;
    background: #363537;
    box-shadow: 0 4px 12px #1b1a1ca3;
    border-radius: 8px;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    color: #fff;
    padding: 12px;
    box-sizing: border-box
}

.exchange-block .inputs .swap-coins {
    position: relative;
    height: 1px;
    width: 100%
}

.exchange-block .inputs .swap-coins svg {
    position: absolute;
    top: -32px;
    right: 6px;
    transition: all .3s ease-in-out
}

.exchange-block .inputs .swap-coins svg:hover {
    cursor: pointer;
    transform: rotate(180deg)
}

.exchange-block .inputs .swap-coins svg:hover path {
    fill: #01ad6a
}

.exchange-block .inputs .main_button {
    max-width: 100%;
    margin-top: 0
}

.exchange-block .inputs .main_button-text {
    font-size: 16px
}

.exchange-block .inputs .minimum-amount {
    margin-top: 8px;
    margin-bottom: 15px;
    padding-left: 12px;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: #ffffff61
}

.exchange-block .inputs .minimum-amount span {
    color: #fff
}

.exchange-block .inputs .minimum-amount_error {
    color: #ff783e
}

.exchange-block .inputs .exchange-rate {
    margin-top: 8px;
    margin-bottom: 20px;
    padding-left: 12px;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: #fff
}

.exchange-block .inputs .exchange-rate span {
    color: #ffffff61
}

.article-page {
    width: 100%;
    margin-top: 16px;
    margin-bottom: 96px;
    box-sizing: border-box
}

@media (max-width: 1079px) {
    .article-page {
        margin-bottom: 64px
    }
}

.article-page .container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    max-width: 1080px;
    width: 100%;
    gap: 64px
}

@media (max-width: 1079px) {
    .article-page .container {
        padding: 0 16px;
        flex-direction: column;
        align-items: center;
        gap: 0
    }
}

.article-page .container .article {
    margin-bottom: 80px;
    width: 100%;
    max-width: 680px
}

@media (max-width: 1079px) {
    .article-page .container .article {
        max-width: 100%;
        margin-bottom: 40px
    }
}

.article-page .container .article .hashtags {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px
}

@media (max-width: 1079px) {
    .article-page .container .article .hashtags {
        margin-bottom: 12px
    }
}

.article-page .container .article .hashtags span {
    display: flex;
    color: #02c076;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px
}

.article-page .container .article .hashtags span .svg {
    width: 22px;
    height: 22px;
    fill: #02c076
}

.article-page .container .article .hashtags span:hover {
    color: #08de8a
}

.article-page .container .article h1.title {
    margin: 0 0 16px;
    color: #fff;
    font-family: Inter, sans-serif;
    font-size: 56px;
    font-style: normal;
    font-weight: 900;
    line-height: 62px;
    letter-spacing: -1.12px
}

@media (max-width: 1079px) {
    .article-page .container .article h1.title {
        font-size: 36px;
        line-height: 40px;
        letter-spacing: -.72px
    }
}

.article-page .container .article .info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 16px;
    width: fit-content;
    color: #777778;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px
}

@media (max-width: 1079px) {
    .article-page .container .article .info {
        margin-bottom: 20px
    }
}

.article-page .container .article .info span.time {
    display: flex;
    gap: 4px
}

.article-page .container .article .article-img {
    margin-bottom: 32px;
    max-height: 454px;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    object-fit: fill
}

@media (max-width: 1079px) {
    .article-page .container .article .article-img {
        display: block;
        margin: 0 auto 24px;
        height: 220px;
        object-fit: cover;
        min-height: 220px;
        width: 340px
    }
}

.article-page .container .article .article-html-content {
    margin-bottom: 48px;
    color: #d4d4d4;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px
}

@media (max-width: 1079px) {
    .article-page .container .article .article-html-content {
        margin-bottom: 40px
    }
}

.article-page .container .article .article-html-content h2 {
    margin: 0 0 20px;
    font-family: Roboto, "sans-serif";
    color: #d4d4d4;
    font-size: 24px;
    font-style: normal;
    font-weight: 900;
    line-height: 28px
}

.article-page .container .article .article-html-content h3 {
    margin: 0 0 20px;
    color: #d4d4d4;
    font-family: Roboto, "sans-serif";
    font-size: 18px;
    font-style: normal;
    font-weight: 900;
    line-height: 26px
}

.article-page .container .article .article-html-content img {
    width: 100%;
    overflow: hidden;
    border-radius: 20px
}

.article-page .container .article .article-html-content a {
    color: #02c076
}

.article-page .container .article .article-html-content p {
    margin: 0 0 32px;
    color: #d4d4d4;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px
}

@media (max-width: 1079px) {
    .article-page .container .article .article-html-content p {
        margin: 0 0 24px
    }
}

.article-page .container .article .article-html-content ol {
    color: #d4d4d4;
    position: relative;
    margin: 0 0 32px;
    padding-left: 34px;
    counter-reset: myCounter
}

.article-page .container .article .article-html-content ol li {
    position: relative;
    margin: 0 0 16px;
    color: #d1d1d2;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    list-style: none
}

.article-page .container .article .article-html-content ol li:before {
    position: absolute;
    left: -34px;
    top: 2px;
    counter-increment: myCounter;
    content: counter(myCounter);
    color: #02c076;
    background: #363537;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 22px;
    width: 22px;
    font-family: Roboto, "sans-serif";
    font-size: 14px;
    font-style: normal;
    font-weight: 900;
    margin: 0 12px 0 0;
    border-radius: 50%
}

.article-page .container .article .article-html-content ul {
    position: relative;
    margin: 0 0 32px;
    padding-left: 34px
}

.article-page .container .article .article-html-content ul li {
    position: relative;
    margin: 0 0 16px;
    color: #d4d4d4;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    list-style: none
}

.article-page .container .article .article-html-content ul li:before {
    content: "•";
    position: absolute;
    display: flex;
    left: -34px;
    top: 2px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 23px;
    width: 22px;
    color: #02c076;
    background: #363537;
    margin: 0 12px 0 0;
    border-radius: 50%
}

.article-page .container .article .share-container {
    display: flex;
    flex-direction: column
}

@media (max-width: 1079px) {
    .article-page .container .article .share-container {
        width: 336px
    }
}

.article-page .container .article .share-container span {
    margin-bottom: 16px;
    color: #fff;
    font-family: Roboto, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 900;
    line-height: 28px
}

.article-page .container .article .share-container .links {
    display: flex;
    gap: 8px
}

.article-page .container .article .share-container .links .link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #363537;
    cursor: pointer;
    transition: background .3s
}

.article-page .container .article .share-container .links .link:hover {
    background: #4e4d50
}

.article-page .container .aside-block {
    display: flex;
    flex-direction: column;
    width: 336px;
    gap: 40px
}

@media (max-width: 1079px) {
    .article-page .container .aside-block {
        flex-direction: column-reverse;
        width: 100%;
        max-width: 100%
    }
}

.article-page .container .aside-block .exchange-title {
    margin: 0 0 16px;
    color: #fff;
    font-family: Roboto, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 900;
    line-height: 28px
}

@media (max-width: 1079px) {
    .article-page .container .aside-block .exchange-wrapper {
        margin-bottom: 40px;
        width: 336px
    }
}

.article-page .container .aside-block .popular-tags {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px
}

@media (max-width: 1079px) {
    .article-page .container .aside-block .popular-tags {
        margin-bottom: 0;
        width: 336px
    }
}

.article-page .container .aside-block .popular-tags h4 {
    margin: 0 0 16px;
    color: #fff;
    font-family: Roboto, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 900;
    line-height: 28px
}

.article-page .container .aside-block .popular-tags .tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.article-page .container .aside-block .popular-tags .tags-container .tag-item {
    display: flex;
    height: 40px;
    padding: 0 16px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: #29282A;
    color: #02c076;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    border-radius: 8px;
    box-sizing: border-box;
    cursor: pointer;
    transition: all .3s
}

@media (max-width: 1079px) {
    .article-page .container .aside-block .popular-tags .tags-container .tag-item {
        padding: 0 12px;
        height: 36px
    }
}

.article-page .container .aside-block .popular-tags .tags-container .tag-item:hover {
    background: #363537
}

.article-page .container .aside-block .popular-tags .tags-container .tag-item .hash-svg {
    margin-left: -8px;
    fill: #02c076 !important
}

@media (max-width: 1079px) {
    .article-page .container .aside-block .popular-tags .tags-container .tag-item .hash-svg {
        margin-left: -5px
    }
}

.article-page .latest-news {
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 1080px
}

@media (max-width: 1079px) {
    .article-page .latest-news {
        padding: 0 16px
    }
}

.article-page .latest-news h3 {
    position: absolute;
    margin: 0;
    color: #fff;
    font-family: Inter, sans-serif;
    font-size: 56px;
    font-style: normal;
    font-weight: 900;
    line-height: 62px;
    letter-spacing: -1.12px
}

@media (max-width: 1079px) {
    .article-page .latest-news h3 {
        width: 100%;
        margin: 0 auto;
        position: relative;
        font-size: 36px;
        line-height: 40px;
        letter-spacing: -.72px
    }
}

.swiper-article {
    padding-top: 95px;
    position: relative;
    width: 100%;
    height: 100%
}

@media (max-width: 1079px) {
    .swiper-article {
        padding-top: 20px
    }
}

.swiper-article .swiper-button-next,
.swiper-article .swiper-button-prev {
    position: absolute;
    top: 0;
    display: inline-flex;
    height: 48px;
    width: 48px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: #02C076;
    transition: background .3s;
    cursor: pointer
}

.swiper-article .swiper-button-next:hover,
.swiper-article .swiper-button-prev:hover {
    background: #06F497
}

@media (max-width: 1079px) {

    .swiper-article .swiper-button-next,
    .swiper-article .swiper-button-prev {
        display: none
    }
}

.swiper-article .swiper-button-prev {
    right: 54px;
    background: url(/images/arrowPrev-62f9682a.svg) center no-repeat, #02C076
}

.swiper-article .swiper-button-prev:hover {
    background: url(/images/arrowPrev-62f9682a.svg) center no-repeat, #06F497
}

.swiper-article .swiper-button-next {
    right: 0;
    background: url(/images/arrowNext-90612110.svg) center no-repeat, #02C076
}

.swiper-article .swiper-button-next:hover {
    background: url(/images/arrowNext-90612110.svg) center no-repeat, #06F497
}

.swiper-slide {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    background: #242325;
    border-radius: 20px;
    overflow: hidden;
    min-height: 520px;
    width: 344px
}

.swiper-slide a {
    width: 100%
}

@media (max-width: 1079px) {
    .swiper-slide {
        max-width: 280px;
        width: 100%;
        min-height: 364px
    }
}

.swiper-slide img {
    display: block;
    width: 100%;
    object-fit: cover;
    height: 230px;
    cursor: pointer
}

@media (max-width: 1079px) {
    .swiper-slide img {
        height: 186px
    }
}

.swiper-slide .slide-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    min-height: 290px;
    width: 100%;
    box-sizing: border-box
}

@media (max-width: 1079px) {
    .swiper-slide .slide-content {
        min-height: 178px;
        max-width: 280px;
        padding: 16px
    }
}

.swiper-slide .slide-content .hashtags {
    display: flex;
    flex-direction: row;
    gap: 8px;
    margin-bottom: 12px
}

@media (max-width: 1079px) {
    .swiper-slide .slide-content .hashtags {
        margin-bottom: 8px
    }
}

.swiper-slide .slide-content .hashtags span {
    display: flex;
    color: #02c076;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px
}

.swiper-slide .slide-content .hashtags span .svg {
    width: 22px;
    height: 22px;
    fill: #02c076
}

.swiper-slide .slide-content .slide-title {
    position: relative;
    margin: 0 0 12px;
    color: #fff;
    font-family: Roboto, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 900;
    line-height: 28px;
    transition: color .3s;
    cursor: pointer
}

.swiper-slide .slide-content .slide-title:hover {
    color: #02c076
}

@media (max-width: 1079px) {
    .swiper-slide .slide-content .slide-title {
        width: auto
    }
}

.swiper-slide .slide-content .description {
    margin-bottom: 12px;
    color: #d3d3d3;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px
}

@media (max-width: 1079px) {
    .swiper-slide .slide-content .description {
        display: none
    }
}

.swiper-slide .slide-content .info {
    display: flex;
    justify-content: space-between;
    color: #777778;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px
}

.swiper-slide .slide-content .info span.time {
    display: flex;
    gap: 4px
}

.swiper-slide:hover .slide-content .slide-title {
    color: #02c076
}

.tokens-list_slider[data-v-b2319aaa] {
    width: 100%;
    position: relative;
    max-width: 100%
}

@media (max-width: 1079px) {
    .tokens-list_slider[data-v-b2319aaa] {
        max-width: 100%
    }
}

.tokens-list_slider_block[data-v-b2319aaa] {
    display: flex;
    flex-direction: column;
    gap: 24px
}

@media (max-width: 1079px) {
    .tokens-list_slider_block[data-v-b2319aaa] {
        gap: 12px
    }
}

.tokens-list_slider .splide[data-v-b2319aaa] {
    padding: 0
}

.tokens-list_slider .splide .slide-name[data-v-b2319aaa] {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-flex;
    padding: 6px 12px 6px 8px;
    color: var(--white-100, #FFF);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    height: 36px;
    font-weight: 600;
    line-height: 16px;
    align-items: center;
    gap: 4px;
    border-radius: 8px;
    background: rgba(41, 40, 42, .64);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    z-index: 1;
    box-sizing: border-box
}

@font-face {
    font-family: Bebas Neue Cyrillic;
    src: url(/images/bebas-cyrilic-3cd5cafb.ttf) format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

.nft-page[data-v-9a24aa03] {
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 100vh;
    width: 100%;
    top: -108px;
    z-index: 1;
    box-sizing: border-box;
    background: #1B1A1C
}

.nft-page[data-v-9a24aa03] * {
    position: relative;
    box-sizing: border-box
}

@media (max-width: 1079px) {
    .nft-page[data-v-9a24aa03] {
        top: -64px
    }
}

.nft-page .page-wrapper[data-v-9a24aa03] {
    width: 100%;
    max-width: 1112px;
    margin: 0 auto;
    padding: 0 32px
}

@media (max-width: 1079px) {
    .nft-page .page-wrapper[data-v-9a24aa03] {
        padding: 0 20px
    }
}

.nft-page .page-wrapper .reverted-title[data-v-9a24aa03] {
    position: absolute;
    top: 0;
    transform: scaleX(-1);
    width: 580px;
    color: #000;
    font-family: Inter, sans-serif;
    font-size: 112px;
    font-style: normal;
    font-weight: 900;
    line-height: 96px;
    letter-spacing: -5.6px;
    text-transform: uppercase;
    opacity: .1;
    -webkit-user-select: none;
    user-select: none;
    pointer-events: none;
    cursor: default
}

@media (max-width: 1079px) {
    .nft-page .page-wrapper .reverted-title[data-v-9a24aa03] {
        display: none
    }
}

.nft-page .header-section[data-v-9a24aa03] {
    padding-top: 212px;
    height: 836px;
    background-size: auto 100%;
    background: url(/images/bg-ce004926.png) no-repeat center center
}

@media (max-width: 1079px) {
    .nft-page .header-section[data-v-9a24aa03] {
        padding: 94px 0 0;
        height: 480px;
        background-size: auto 560px;
        background-position: calc(50% + 57px) bottom
    }
}

@media (max-width: 1079px) {
    .nft-page .header-section .page-wrapper[data-v-9a24aa03] {
        max-width: 360px
    }
}

.nft-page .header-section[data-v-9a24aa03]:after {
    content: "";
    display: block;
    position: absolute;
    width: 390px;
    height: 380px;
    top: 124px;
    left: calc(50% - 26px);
    background: url(/images/swapship-8bdc4081.png)
}

@media (max-width: 1079px) {
    .nft-page .header-section[data-v-9a24aa03]:after {
        width: 261px;
        height: 254px;
        background-size: contain;
        top: 3px;
        left: calc(50% + 39px)
    }
}

.nft-page .header-section h1[data-v-9a24aa03] {
    width: 580px;
    margin: 0 0 28px;
    color: #fff;
    font-size: 112px;
    font-style: normal;
    font-weight: 900;
    line-height: 96px;
    letter-spacing: -5.6px;
    text-transform: uppercase
}

@media (max-width: 1079px) {
    .nft-page .header-section h1[data-v-9a24aa03] {
        margin: 0 0 16px;
        width: 245px;
        font-size: 48px;
        line-height: 44px;
        letter-spacing: -2.4px
    }
}

.nft-page .header-section .header-description[data-v-9a24aa03] {
    display: flex;
    gap: 19px
}

@media (max-width: 1079px) {
    .nft-page .header-section .header-description[data-v-9a24aa03] {
        gap: 32px;
        flex-direction: column
    }
}

.nft-page .header-section .header-description span[data-v-9a24aa03] {
    display: flex;
    width: 355px;
    color: var(--green, #02C076);
    font-family: Bebas Neue Cyrillic, Bebas Neue, sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px
}

@media (max-width: 1079px) {
    .nft-page .header-section .header-description span[data-v-9a24aa03] {
        width: 292px
    }
}

.nft-page .header-section .header-description button[data-v-9a24aa03] {
    display: inline-flex;
    height: 60px;
    padding: 16px 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 8px;
    color: var(--gray-card, #29282A);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    background: var(--green, #02C076);
    border: none;
    cursor: pointer
}

@media (max-width: 1079px) {
    .nft-page .header-section .header-description button[data-v-9a24aa03] {
        width: 160px;
        height: 48px
    }
}

.nft-page .description-section[data-v-9a24aa03] {
    background: url(/images/line-object-6abc8699.png) repeat-x;
    background-size: auto 32px
}

.nft-page .description-section h2[data-v-9a24aa03] {
    margin: 105px auto 32px;
    color: var(--white-100, #FFF);
    text-align: center;
    font-size: 56px;
    font-style: normal;
    font-weight: 900;
    line-height: 62px;
    letter-spacing: -1.12px
}

@media (max-width: 1079px) {
    .nft-page .description-section h2[data-v-9a24aa03] {
        margin: 54px auto 20px;
        font-size: 36px;
        line-height: 38px;
        letter-spacing: -.72px
    }
}

.nft-page .description-section h2 span svg[data-v-9a24aa03] {
    width: 44px;
    height: 44px;
    transform: translateY(6px);
    margin-left: -2px;
    margin-right: -3px
}

@media (max-width: 1079px) {
    .nft-page .description-section h2 span svg[data-v-9a24aa03] {
        width: 28px;
        height: 28px;
        transform: translateY(4px)
    }
}

.nft-page .description-section p[data-v-9a24aa03] {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 32px;
    color: #d1d1d2;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px
}

@media (max-width: 1079px) {
    .nft-page .description-section p[data-v-9a24aa03] {
        margin: 0 auto 24px;
        padding: 0 16px;
        font-size: 14px;
        line-height: 22px
    }
}

.nft-page .description-section h3[data-v-9a24aa03] {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 20px;
    color: var(--white-100, #FFF);
    font-family: Roboto, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 900;
    line-height: 28px
}

@media (max-width: 1079px) {
    .nft-page .description-section h3[data-v-9a24aa03] {
        margin: 0 auto 12px;
        padding: 0 16px;
        font-size: 24px;
        line-height: 28px
    }
}

.nft-page .collection-section h2[data-v-9a24aa03] {
    margin: 38px auto 48px;
    color: var(--white-100, #FFF);
    text-align: center;
    font-size: 56px;
    font-style: normal;
    font-weight: 900;
    line-height: 62px;
    letter-spacing: -1.12px
}

@media (max-width: 1079px) {
    .nft-page .collection-section h2[data-v-9a24aa03] {
        margin: 24px auto 20px;
        font-size: 36px;
        line-height: 38px;
        letter-spacing: -.72px
    }
}

.nft-page .collection-section h2 span svg[data-v-9a24aa03] {
    width: 44px;
    height: 44px;
    transform: translateY(6px);
    margin-left: -3px;
    margin-right: -3px
}

@media (max-width: 1079px) {
    .nft-page .collection-section h2 span svg[data-v-9a24aa03] {
        width: 28px;
        height: 28px;
        transform: translateY(4px)
    }
}

.nft-page .collection-section .cards-wrapper[data-v-9a24aa03] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 22px
}

@media (max-width: 1079px) {
    .nft-page .collection-section .cards-wrapper[data-v-9a24aa03] {
        gap: 12px
    }
}

.nft-page .collection-section .cards-wrapper .card[data-v-9a24aa03] {
    width: 344px;
    min-height: 426px;
    flex-shrink: 0;
    border-radius: 12px;
    background: var(--gray-card, #29282A);
    box-shadow: 0 4px 12px #1b1a1ca3;
    overflow: hidden
}

@media (max-width: 1079px) {
    .nft-page .collection-section .cards-wrapper .card[data-v-9a24aa03] {
        width: 336px;
        min-height: 386px;
        border-radius: 20px;
        order: 3
    }
}

.nft-page .collection-section .cards-wrapper .card .card-header[data-v-9a24aa03] {
    display: flex;
    padding: 32px;
    height: 136px;
    background: url(/images/present-b4cc9f10.png) no-repeat bottom right -1px, var(--green, #02C076)
}

@media (max-width: 1079px) {
    .nft-page .collection-section .cards-wrapper .card .card-header[data-v-9a24aa03] {
        padding: 24px 32px;
        height: 104px;
        background-size: 120px
    }
}

.nft-page .collection-section .cards-wrapper .card .card-header>svg[data-v-9a24aa03] {
    width: 80px;
    height: 80px
}

@media (max-width: 1079px) {
    .nft-page .collection-section .cards-wrapper .card .card-header>svg[data-v-9a24aa03] {
        width: 72px;
        height: 72px
    }
}

.nft-page .collection-section .cards-wrapper .card .card-header span[data-v-9a24aa03] {
    color: var(--gray-card, #29282A);
    font-family: Inter;
    font-size: 96px;
    font-style: normal;
    font-weight: 900;
    line-height: 80px;
    letter-spacing: -4.8px
}

@media (max-width: 1079px) {
    .nft-page .collection-section .cards-wrapper .card .card-header span[data-v-9a24aa03] {
        font-size: 64px;
        line-height: 56px;
        letter-spacing: -3.2px
    }
}

.nft-page .collection-section .cards-wrapper .card .card-header.orange[data-v-9a24aa03] {
    border-radius: 20px 20px 0 0;
    background: url(/images/present-b4cc9f10.png) no-repeat bottom right -1px, var(--red, #FF783E)
}

@media (max-width: 1079px) {
    .nft-page .collection-section .cards-wrapper .card .card-header.orange[data-v-9a24aa03] {
        background-size: 120px
    }
}

.nft-page .collection-section .cards-wrapper .card .card-content[data-v-9a24aa03] {
    display: flex;
    flex-direction: column;
    padding: 24px
}

.nft-page .collection-section .cards-wrapper .card h4[data-v-9a24aa03] {
    margin: 0 0 12px;
    color: var(--white-100, #FFF);
    font-family: Inter;
    font-size: 35px;
    font-style: normal;
    font-weight: 900;
    line-height: 38px;
    letter-spacing: -.72px
}

@media (max-width: 1079px) {
    .nft-page .collection-section .cards-wrapper .card h4[data-v-9a24aa03] {
        font-size: 28px;
        line-height: 30px
    }
}

.nft-page .collection-section .cards-wrapper .card .benefits[data-v-9a24aa03] {
    margin-bottom: 6px;
    color: var(--white-38, rgba(255, 255, 255, .38));
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px
}

@media (max-width: 1079px) {
    .nft-page .collection-section .cards-wrapper .card .benefits[data-v-9a24aa03] {
        font-size: 14px;
        line-height: 22px
    }
}

.nft-page .collection-section .cards-wrapper .card .labels[data-v-9a24aa03] {
    margin-bottom: 12px;
    display: flex;
    gap: 20px
}

.nft-page .collection-section .cards-wrapper .card .labels .item[data-v-9a24aa03] {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px
}

.nft-page .collection-section .cards-wrapper .card .labels .item svg[data-v-9a24aa03] {
    width: 22px;
    height: 22px
}

.nft-page .collection-section .cards-wrapper .card .labels .item-cover[data-v-9a24aa03] {
    color: #e9f725;
    gap: 7px
}

.nft-page .collection-section .cards-wrapper .card .labels .item-cover svg[data-v-9a24aa03] {
    width: 17px;
    height: 17px
}

.nft-page .collection-section .cards-wrapper .card .labels .item-nft[data-v-9a24aa03] {
    color: var(--green, #02C076)
}

.nft-page .collection-section .cards-wrapper .card .labels .item-discount[data-v-9a24aa03] {
    color: var(--red, #FF783E)
}

.nft-page .collection-section .cards-wrapper .card p[data-v-9a24aa03] {
    margin: 0 0 24px;
    color: #d4d4d4;
    min-height: 66px;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px
}

.nft-page .collection-section .cards-wrapper .card .buttons[data-v-9a24aa03] {
    display: flex;
    gap: 8px
}

.nft-page .collection-section .cards-wrapper .card .buttons>button[data-v-9a24aa03],
.nft-page .collection-section .cards-wrapper .card .buttons>a[data-v-9a24aa03] {
    display: flex;
    width: 100%;
    max-width: 144px;
    height: 40px;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    color: var(--black, #1B1A1C);
    text-align: center;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer
}

@media (max-width: 1079px) {

    .nft-page .collection-section .cards-wrapper .card .buttons>button[data-v-9a24aa03],
    .nft-page .collection-section .cards-wrapper .card .buttons>a[data-v-9a24aa03] {
        max-width: 140px
    }
}

.nft-page .collection-section .cards-wrapper .card .buttons .get[data-v-9a24aa03] {
    background: var(--green, #02C076)
}

.nft-page .collection-section .cards-wrapper .card .buttons .buy[data-v-9a24aa03] {
    background: var(--red, #FF783E)
}

.nft-page .collection-section .cards-wrapper .card .crown[data-v-9a24aa03] {
    position: absolute;
    z-index: 1;
    top: -33px;
    left: -10px
}

@media (max-width: 1079px) {
    .nft-page .collection-section .cards-wrapper .card[data-v-9a24aa03]:nth-child(3) {
        order: 1
    }
}

@media (max-width: 1079px) {
    .nft-page .collection-section .cards-wrapper .card[data-v-9a24aa03]:nth-child(2) {
        order: 2
    }
}

@media (max-width: 1079px) {
    .nft-page .collection-section .cards-wrapper .card[data-v-9a24aa03]:nth-child(1) {
        order: 3
    }
}

.nft-page .collection-section .info[data-v-9a24aa03] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    margin: 40px auto 120px;
    gap: 12px;
    width: 100%;
    max-width: 712px
}

@media (max-width: 1079px) {
    .nft-page .collection-section .info[data-v-9a24aa03] {
        margin: 24px auto 56px
    }
}

.nft-page .collection-section .info svg[data-v-9a24aa03] {
    margin: 0 auto
}

.nft-page .collection-section .info>span[data-v-9a24aa03] {
    color: var(--white-100, #FFF);
    text-align: center;
    font-family: Bebas Neue Cyrillic, Bebas Neue, sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px
}

@media (max-width: 1079px) {
    .nft-page .collection-section .info>span[data-v-9a24aa03] {
        padding: 0 24px;
        font-size: 22px;
        line-height: 22px
    }
}

.nft-page .collection-section .info>span[data-v-9a24aa03] span {
    color: var(--green, #02C076)
}

.nft-page .tokens-section[data-v-9a24aa03] {
    background: url(/images/blue-line-object-ef9c2703.png) center 18px repeat-x;
    background-size: auto 32px;
    margin: 0 0 120px
}

@media (max-width: 1079px) {
    .nft-page .tokens-section[data-v-9a24aa03] {
        margin: 0 0 48px;
        background: url(/images/blue-line-object-ef9c2703.png) center 0 repeat-x
    }
}

.nft-page .tokens-section h2[data-v-9a24aa03] {
    margin: 0 auto 48px;
    color: var(--white-100, #FFF);
    text-align: center;
    font-size: 56px;
    font-style: normal;
    font-weight: 900;
    line-height: 62px;
    letter-spacing: -1.12px
}

@media (max-width: 1079px) {
    .nft-page .tokens-section h2[data-v-9a24aa03] {
        margin: 0 auto 24px;
        font-size: 36px;
        line-height: 38px;
        letter-spacing: -.72px
    }
}

.nft-page .tokens-section h2 span svg[data-v-9a24aa03] {
    width: 44px;
    height: 44px;
    transform: translateY(6px);
    margin-left: -7px;
    margin-right: -3px
}

@media (max-width: 1079px) {
    .nft-page .tokens-section h2 span svg[data-v-9a24aa03] {
        width: 28px;
        height: 28px;
        transform: translateY(4px)
    }
}

.nft-page .how-to-use-section[data-v-9a24aa03] {
    max-width: 920px;
    margin: 0 auto
}

.nft-page .how-to-use-section h2[data-v-9a24aa03] {
    margin: 0 auto 10px;
    color: var(--white-100, #FFF);
    text-align: center;
    font-size: 56px;
    font-style: normal;
    font-weight: 900;
    line-height: 62px;
    letter-spacing: -1.12px
}

.nft-page .how-to-use-section .swiper-buttons[data-v-9a24aa03] {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-bottom: 32px;
    height: 24px
}

.nft-page .how-to-use-section .swiper-buttons>span[data-v-9a24aa03] {
    display: flex;
    align-items: center;
    gap: 7px
}

.nft-page .how-to-use-section .swiper-buttons>div[data-v-9a24aa03] {
    cursor: pointer
}

.nft-page .how-to-use-section .swiper-slide[data-v-9a24aa03] {
    background: transparent
}

.nft-page .faq-section[data-v-9a24aa03] {
    background: url(/images/line-object-6abc8699.png) center 18px repeat-x;
    background-size: auto 32px;
    margin: 0 0 120px
}

@media (max-width: 1079px) {
    .nft-page .faq-section[data-v-9a24aa03] {
        margin: 0 0 40px;
        background: url(/images/line-object-6abc8699.png) center 0 repeat-x
    }
}

.nft-page .faq-section h2[data-v-9a24aa03] {
    margin: 0 auto 32px;
    color: var(--white-100, #FFF);
    text-align: center;
    font-size: 56px;
    font-style: normal;
    font-weight: 900;
    line-height: 62px;
    letter-spacing: -1.12px
}

@media (max-width: 1079px) {
    .nft-page .faq-section h2[data-v-9a24aa03] {
        margin: 0 auto 16px;
        font-size: 36px;
        line-height: 38px;
        letter-spacing: -.72px
    }
}

.nft-page .faq-section .accordion .item[data-v-9a24aa03] {
    display: flex;
    flex-direction: column;
    max-height: 76px;
    border-radius: 12px;
    overflow: hidden;
    transition: max-height .3s ease
}

@media (max-width: 1079px) {
    .nft-page .faq-section .accordion .item[data-v-9a24aa03] {
        max-height: 80px
    }
}

.nft-page .faq-section .accordion .item .title[data-v-9a24aa03] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 24px 24px 48px;
    cursor: pointer
}

@media (max-width: 1079px) {
    .nft-page .faq-section .accordion .item .title[data-v-9a24aa03] {
        padding: 16px 12px 16px 16px;
        min-height: 80px
    }
}

.nft-page .faq-section .accordion .item .title>svg[data-v-9a24aa03] {
    transition: all .3s
}

.nft-page .faq-section .accordion .item .title h4[data-v-9a24aa03] {
    margin: 0;
    color: var(--white-100, #FFF);
    font-family: Roboto, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 900;
    line-height: 28px
}

@media (max-width: 1079px) {
    .nft-page .faq-section .accordion .item .title h4[data-v-9a24aa03] {
        font-size: 18px;
        line-height: 24px
    }
}

.nft-page .faq-section .accordion .item .content[data-v-9a24aa03] {
    padding: 0 76px 46px 46px;
    color: #d3d3d3;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px
}

@media (max-width: 1079px) {
    .nft-page .faq-section .accordion .item .content[data-v-9a24aa03] {
        padding: 0 16px 20px;
        font-size: 14px;
        line-height: 22px
    }
}

.nft-page .faq-section .accordion .item.open[data-v-9a24aa03] {
    max-height: 1000px;
    background: var(--white-hover-4, rgba(255, 255, 255, .04))
}

.nft-page .faq-section .accordion .item.open .title h4[data-v-9a24aa03] {
    color: var(--green, #02C076)
}

.nft-page .faq-section .accordion .item.open .title>svg[data-v-9a24aa03] {
    transform: rotate(180deg)
}

.nft-page .faq-section .accordion .item.open .title>svg path[data-v-9a24aa03] {
    fill: var(--green, #02C076);
    fill-opacity: 1
}

@media (max-width: 1079px) {
    .nft-page .gift-section>.page-wrapper[data-v-9a24aa03] {
        padding: 0 12px
    }
}

.nft-page .gift-section .gift[data-v-9a24aa03] {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
    padding: 40px 48px 48px;
    width: 100%;
    border-radius: 20px;
    background: var(--green, #02C076)
}

@media (max-width: 1079px) {
    .nft-page .gift-section .gift[data-v-9a24aa03] {
        margin: 56px auto 0;
        padding: 84px 16px 16px;
        width: 100%;
        max-width: 336px;
        min-height: 262px
    }
}

.nft-page .gift-section .gift h2[data-v-9a24aa03] {
    margin: 0 0 12px;
    color: var(--black, #1B1A1C);
    font-family: Inter;
    font-size: 56px;
    font-style: normal;
    font-weight: 900;
    line-height: 62px;
    letter-spacing: -1.12px
}

@media (max-width: 1079px) {
    .nft-page .gift-section .gift h2[data-v-9a24aa03] {
        text-align: center;
        font-size: 36px;
        line-height: 38px;
        letter-spacing: -.72px
    }
}

.nft-page .gift-section .gift p[data-v-9a24aa03] {
    margin: 0 0 32px;
    width: 100%;
    max-width: 432px;
    color: var(--gray-card, #29282A);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px
}

@media (max-width: 1079px) {
    .nft-page .gift-section .gift p[data-v-9a24aa03] {
        margin: 0 0 20px;
        text-align: center;
        font-size: 14px;
        line-height: 22px
    }
}

.nft-page .gift-section .gift>button[data-v-9a24aa03] {
    display: inline-flex;
    height: 60px;
    padding: 16px 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    width: fit-content;
    border-radius: 8px;
    color: var(--white-100, #FFF);
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    background: var(--gray-card, #29282A);
    -webkit-backdrop-filter: blur(13.5914087296px);
    backdrop-filter: blur(13.5914087296px);
    border: none;
    cursor: pointer
}

@media (max-width: 1079px) {
    .nft-page .gift-section .gift>button[data-v-9a24aa03] {
        height: 48px;
        width: 100%;
        padding: 12px 40px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        font-size: 16px;
        line-height: 24px
    }
}

.nft-page .gift-section .gift>img[data-v-9a24aa03] {
    position: absolute;
    top: 31px;
    right: 0
}

@media (max-width: 1079px) {
    .nft-page .gift-section .gift>img[data-v-9a24aa03] {
        width: 256px;
        top: -56px;
        left: 45px
    }
}

.nft-page .popup-wrapper[data-v-9a24aa03] {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999999;
    background: rgba(27, 26, 28, .72);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px)
}

.nft-page .popup-wrapper .popup[data-v-9a24aa03] {
    display: flex;
    flex-direction: column;
    background: #29282A;
    box-shadow: 0 4px 12px #1b1a1ca3;
    border-radius: 12px;
    margin: auto;
    padding: 24px;
    box-sizing: border-box;
    position: relative;
    max-width: 360px;
    width: 100%;
    height: auto
}

@media (max-width: 1079px) {
    .nft-page .popup-wrapper .popup[data-v-9a24aa03] {
        height: 100%;
        max-width: 100%;
        background: #1B1A1C;
        display: flex
    }
}

.nft-page .popup-wrapper .popup .popup-close[data-v-9a24aa03] {
    position: absolute;
    right: 8px;
    top: 8px
}

.nft-page .popup-wrapper .popup .popup-close rect[data-v-9a24aa03] {
    fill: none
}

.nft-page .popup-wrapper .popup .popup-close path[data-v-9a24aa03] {
    fill: #7a7a7b;
    transition: all .3s ease-in-out
}

@media (max-width: 1079px) {
    .nft-page .popup-wrapper .popup .popup-close path[data-v-9a24aa03] {
        fill: #02c076
    }
}

.nft-page .popup-wrapper .popup .popup-close[data-v-9a24aa03]:hover {
    cursor: pointer
}

.nft-page .popup-wrapper .popup .popup-close:hover path[data-v-9a24aa03] {
    fill: #02c076
}

.nft-page .popup-wrapper .popup .error-icon[data-v-9a24aa03] {
    position: absolute;
    top: 20px;
    right: 20px
}

@media (max-width: 1079px) {
    .nft-page .popup-wrapper .popup .error-icon[data-v-9a24aa03] {
        position: inherit;
        top: 20px;
        right: 20px;
        width: 100%
    }
}

.nft-page .popup-wrapper .popup .popup-content[data-v-9a24aa03] {
    align-self: center
}

.nft-page .popup-wrapper .popup .popup-content .title[data-v-9a24aa03] {
    margin-bottom: 24px;
    font-family: Roboto, sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 24px;
    line-height: 24px;
    color: #fff
}

@media (max-width: 1079px) {
    .nft-page .popup-wrapper .popup .popup-content .title[data-v-9a24aa03] {
        font-weight: 900;
        font-size: 36px;
        line-height: 38px;
        text-align: center;
        letter-spacing: -.02em
    }
}

.nft-page .popup-wrapper .popup .popup-content .popup-image[data-v-9a24aa03] {
    display: flex;
    position: relative;
    margin: 0 auto 20px;
    width: 120px;
    height: 120px
}

.nft-page .popup-wrapper .popup .popup-content .step[data-v-9a24aa03] {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--white-100, #FFF);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px
}

.nft-page .popup-wrapper .popup .popup-content .step svg[data-v-9a24aa03] {
    width: 24px;
    height: 24px;
    overflow: visible
}

.nft-page .popup-wrapper .popup .main_button[data-v-9a24aa03] {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px
}

@media (max-width: 1079px) {
    .nft-page .popup-wrapper .popup .main_button[data-v-9a24aa03] {
        max-width: 312px;
        position: fixed;
        bottom: 24px
    }
}

.nft-page .popup-wrapper .popup .main_button.error[data-v-9a24aa03] {
    background: #FF783E
}

[data-v-9a24aa03] h2 span {
    display: inline-block;
    width: 44px;
    height: 44px;
    background: url(/images/nft-icon-svg-a4fd7a2f.svg) no-repeat;
    transform: translateY(6px);
    margin: 0 -3px
}

@media (max-width: 1079px) {
    [data-v-9a24aa03] h2 span {
        width: 28px;
        height: 28px;
        transform: translateY(4px);
        margin: 0 -2px;
        background-size: contain
    }
}