:root{
    --neutral-1: #17181A;
    --neutral-2: #1C1D1F;
    --neutral-3: #1F2023;
    --neutral-4: #26282B;
    --Neutral-5: #2D2F33;
    --neutral-8: #55585D;
    --neutral-11: #84878A;
    --neutral-12: #999C9F;
    --neutral-14: #FFF;
    --blue: #2F86FF;
    --transition: .3s all ease;
}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
body{
    font-family: Arimo;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    background-color: var(--neutral-1);
    color: var(--neutral-14);
}
.wrapper{
    overflow: hidden;
}
.container{
    margin: 0 auto;
    max-width: 952px;
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
}
form * , button{
    font-family: inherit;
}
/* header */
.header{
    padding: 0 0 48px 0;
}
.header-row{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 191px;
    padding: 11px 0;
}
.header-nav{
    display: flex;
    gap: 4px;
    padding: 2px;
    border-radius: 222px;
    background-color: var(--neutral-2);
}
.header-link{
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 222px;
    background-color: transparent;
    transition: var(--transition);
    font-size: 15px;
    line-height: 120%;
    letter-spacing: -0.3px;
    color: var(--neutral-11);
    text-decoration: none;
    padding: 8px 0;
}
.header-link.active{
    color: var(--neutral-14);
    background-color: var(--neutral-4);
}

main{
    padding: 0 0 48px 0;
    min-height: calc(100svh - 240px);
}
/* .crypto { } */
.section-top{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
}
.crypto .section-top{
    margin: 0 0 80px 0;
}
.section-title{
    font-size: 42px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -1.68px;
    color: var(--neutral-8);
}
.crypto .section-title{
    padding: 24px 0 0 0;
}
.section-title span{
    color: var(--neutral-14);
}
.section-desc{
    padding: 16px 24px;
    position: relative;
}
.section-desc::before{
    position: absolute;
    content: '';
    inset: 0;
    transform: rotate(3deg);
    border-radius: 12px;
    border: 1px solid var(--neutral-3);
}
.crypto .section-desc,
.fees .section-desc{
    width: 390px;
}
.fees .section-desc{
    margin: 10px 5px 0 0;
}
.crypto .section-desc::before,
.fees .section-desc::before{
    height: 200px;
}
.desc{
    font-family: Arimo;
    font-size: 15px;
    line-height: 120%;
    letter-spacing: -0.3px;
    color: var(--neutral-11);
}
.desc span{
    color: var(--neutral-14);
}

.fees .section-top{
    overflow: hidden;
    padding: 0 0 48px 0;
    border-bottom: 1px solid var(--neutral-3);
    margin: 0 0 48px 0;
}
.transaction{
    width: 100%;
    padding: 36px;
    border-radius: 24px;
    background-color: var(--neutral-3);
    position: relative;
    margin: 0 0 48px 0;
}
.transaction-infos{
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translate(-50%, 0);
    display: flex;
    padding: 8px 12px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border-radius: 12px;
    border: 1px solid var(--neutral-4);
    background-color: var(--neutral-3);
}
.transaction-infos .desc{
    font-size: 15px;
    white-space: nowrap;
}
.transaction-infos .line-divider{
    width: 1px;
    height: 16px;
    display: flex;
    background-color: var(--neutral-4);
}
.transaction-infos h3{
    font-size: 14px;
    line-height: normal;
    letter-spacing: -0.42px;
    color: var(--neutral-12);
}
.transaction-inputs{
    position: relative;
    display: flex;
    gap: 12px;
    margin: 0 0 8px 0;
}
.transaction-inputs .swap{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid var(--neutral-4);
    background-color: var(--neutral-3);
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translate(-50%, 0);
    cursor: pointer;
    transition:0.3s;
}
.swap-toggle{
    display:none;
}
.transaction-inputs .swap:active{
    transform: translate(-50%, 0) rotate(180deg);
}
.transaction-part{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: calc(50% - 6px);
}
.transaction-tips{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 36px 0;
}
.transaction-input{
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 12px 24px 12px 12px;
    border-radius: 12px;
    background-color: var(--neutral-4);
}
.transaction-part:last-child .transaction-input{
    padding: 12px 12px 12px 24px;
}
.transaction-inputs:has(.swap input:checked) .transaction-part:last-child .transaction-input{
    padding: 12px 24px 12px 12px;
}
.transaction-inputs:has(.swap input:checked) .transaction-input{
    padding: 12px 12px 12px 24px;
}
.transaction-part .transaction-tip{
    display: none;
}
.money-type{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}
.money-type p{
    font-size: 14px;
    line-height: normal;
    letter-spacing: -0.42px;
    color: var(--neutral-12);
    user-select: none;
}
.money-type input{
    max-width: 204px;
    font-size: 18px;
    font-weight: 500;
    line-height: 160%;
    letter-spacing: -0.54px;
    color: var(--neutral-14);
    background-color: transparent;
    border: none;
    border-radius: 0;
    outline: none;
}
.money-type input:last-child{
    display: none;
}
.transaction-inputs:has(.swap input:checked) .money-type input:last-child{
    display: none;
}
.transaction-inputs:has(.swap input:checked) .money-type input:first-child{
    display: block;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
}

.transaction-inputs:has(.swap input:checked) {
    flex-direction: row;
}
.transaction-inputs .money-type span:first-child{
    display: none;
}
.transaction-inputs:has(.swap input:checked) .money-type span:first-child{
    display: none;
}
.transaction-inputs:has(.swap input:checked) .money-type span:last-child{
    display: inline;
}

/*  */
.currency-select{
    display: flex;
    align-items: center;
    border-radius: 8px;
    background-color: var(--Neutral-5);
    border: 1px solid var(--neutral-8);
    position: relative;
    transition: var(--transition);
    user-select: none;
    min-width: 144px;
}
.currency-select:focus-within {
    border-radius: 12px;
}
.select-arr{
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translate(0, -50%) rotateX(0deg);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    transition: var(--transition);
    pointer-events: none;
}
.currency-select:focus-within .select-arr {
    transform: translate(0, -50%) rotateX(-180deg);
}

.currency-native{
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    height: 56px;
    cursor: pointer;
    border: none;
    outline: none;
    background: transparent;
    padding: 0 36px 0 40px;
    color: var(--neutral-14);
    font-size: 18px;
    font-weight: 500;
    line-height: 160%;
    letter-spacing: -0.54px;
}
.currency-native option{
    color: #000;
    background-color: #fff;
}

.pgp-key-block{
    margin: 0;
    padding: 16px;
    max-height: 70vh;
    overflow: auto;
    font-size: 12px;
    line-height: 1.45;
    color: var(--neutral-14);
    background: var(--neutral-3);
    border: 1px solid var(--neutral-4);
    border-radius: 12px;
    white-space: pre-wrap;
    word-break: break-all;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}
.pgp-key-label{
    display: block;
    margin: 0 0 8px;
    font-size: 13px;
    color: var(--neutral-12);
}
textarea.pgp-key-textarea.pgp-key-block{
    display: block;
    width: 100%;
    box-sizing: border-box;
    resize: vertical;
    min-height: 220px;
    cursor: text;
}
textarea.pgp-key-textarea.pgp-key-block.address-textarea-compact{
    min-height: 64px;
    max-height: 220px;
}
textarea.pgp-key-textarea.pgp-key-block.guarantee-letter-body-field{
    min-height: 280px;
    max-height: 60vh;
}

.currency-icon{
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    background: #F7931A;
}
.currency-icon::before{
    content: "B";
}
.currency-select[data-currency="eth"] .currency-icon{
    background: #EDF0F4;
    color: #343434;
}
.currency-select[data-currency="eth"] .currency-icon::before{
    content: "E";
}
.currency-select[data-currency="btc"] .currency-icon{
    background: #F7931A;
    color: #fff;
}
.currency-select[data-currency="btc"] .currency-icon::before{
    content: "B";
}
.currency-select[data-currency="xmr"] .currency-icon{
    background: #ff6b00;
    color: #fff;
}
.currency-select[data-currency="xmr"] .currency-icon::before{
    content: "M";
}
.currency-select[data-currency="sol"] .currency-icon{
    background: #10f4b1;
    color: #0c0f14;
}
.currency-select[data-currency="sol"] .currency-icon::before{
    content: "S";
}
.currency-select[data-currency="trx"] .currency-icon{
    background: #FF060A;
    color: #fff;
}
.currency-select[data-currency="trx"] .currency-icon::before{
    content: "T";
}

/* Live icon follows <select> without JS (:has); overrides stale data-currency after user changes dropdown */
.currency-select:has(.currency-native option[value="eth"]:checked) .currency-icon{
    background: #EDF0F4;
    color: #343434;
}
.currency-select:has(.currency-native option[value="eth"]:checked) .currency-icon::before{
    content: "E";
}
.currency-select:has(.currency-native option[value="btc"]:checked) .currency-icon{
    background: #F7931A;
    color: #fff;
}
.currency-select:has(.currency-native option[value="btc"]:checked) .currency-icon::before{
    content: "B";
}
.currency-select:has(.currency-native option[value="xmr"]:checked) .currency-icon{
    background: #ff6b00;
    color: #fff;
}
.currency-select:has(.currency-native option[value="xmr"]:checked) .currency-icon::before{
    content: "M";
}
.currency-select:has(.currency-native option[value="sol"]:checked) .currency-icon{
    background: #10f4b1;
    color: #0c0f14;
}
.currency-select:has(.currency-native option[value="sol"]:checked) .currency-icon::before{
    content: "S";
}
.currency-select:has(.currency-native option[value="trx"]:checked) .currency-icon{
    background: #FF060A;
    color: #fff;
}
.currency-select:has(.currency-native option[value="trx"]:checked) .currency-icon::before{
    content: "T";
}

.transaction-tip{
    font-size: 12px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.36px;
    color: var(--neutral-11);
    padding: 6px 8px;
    background-color: var(--neutral-4);
    border-radius: 12px;
}
.transaction-inputs + .line-divider{
    display: flex;
    width: calc(100% + 72px);
    margin: 0 0 0 -36px;
    height: 1px;
    background-color: var(--neutral-4);
}
.destination-block{
    margin-top: 20px;
}
.destination-label{
    display: block;
    margin-bottom: 10px;
    color: var(--neutral-12);
    font-size: 14px;
    font-weight: 500;
}
.destination-input{
    width: 100%;
    height: 56px;
    border-radius: 12px;
    border: 1px solid #1f232d;
    background-color: var(--neutral-4);
    color: var(--neutral-14);
    padding: 0 16px;
    font-size: 18px;
    outline: none;
    transition: var(--transition);
}
.destination-input::placeholder{
    color: var(--neutral-10);
}

.transaction-actions{
    margin: 36px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.capcha{
    display: flex;
    align-items: center;
    gap: 8px;
}
.capcha-value,
.capcha-result{
    font-size: 18px;
    font-weight: 500;
    line-height: 160%;
    letter-spacing: -0.54px;
    color: var(--neutral-14);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background-color: transparent;
    border: 1px solid var(--Neutral-5);
    padding: 12px;
}
.capcha-result{
    border: none;
    background-color: var(--neutral-4);
    outline: none;
}
.capcha span{
    font-weight: 500;
    line-height: 160%;
    letter-spacing: -0.54px;
    color: var(--neutral-12);
}
.transaction-btns{
    display: flex;
    gap: 8px;
}
.btn{
    display: flex;
    padding: 12px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%;
    letter-spacing: -0.54px;
    color: var(--neutral-14);
    cursor: pointer;
    text-decoration: none;
}
.btn-default{
    background-color: var(--Neutral-5);
}
.btn-blue{
    background-color: var(--blue);
}
.transaction-remember{
    font-size: 14px;
    line-height: normal;
    letter-spacing: -0.42px;
    color: var(--neutral-11);
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 2px 2px 2px 12px;
    border-radius: 14px;
    border: 1px solid var(--neutral-4);
    background-color: var(--neutral-3);
    position: relative;
    left: 50%;
    transform: translate(-50%, -170%);
    white-space: nowrap;
}
.transaction-remember p{
    padding: 8px 12px;
    border-radius: 12px 4px 4px 12px;
    background-color: var(--neutral-4);
}
.transaction-remember p + p{
    border-radius: 4px 12px 12px 4px;
}
.transaction-remember span{
    color: var(--neutral-14);
}
.transaction-remember p:has(+ p){
    margin: 0 0 0 8px;
}

.block-title{
    font-size: 20px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -0.8px;
    color: var(--neutral-14);
    margin: 0 0 20px 0;
}
.reverse{
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    gap: 24px;
}
.reverse-part{
    display: flex;
    padding: 24px;
    flex-direction: column;
    border-radius: 24px;
    background-color: var(--neutral-2);
}
.coin-item{
    display: flex;
    justify-content: space-between;
    padding: 0 0 16px 0;
    border-bottom: 1px solid var(--neutral-4);
    margin: 0 0 16px 0;
}
.coin-item:last-child{
    padding: 0;
    border: none;
    margin: 0;
}
.coin-badge{
    display: flex;
    align-items: center;
    gap: 8px;
}
.coin-badge div{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.coin-badge .coin-title{
    font-weight: 500;
    line-height: 160%;
    letter-spacing: -0.54px;
    color: var(--neutral-14);
}
.coin-badge svg,
.coin-badge img{
    width: 20px;
    height: 20px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    object-fit: contain;
    flex-shrink: 0;
}
.coin-short__title{
    font-size: 15px;
    line-height: 120%;
    letter-spacing: -0.3px;
    color: var(--neutral-11);
}
.coin-value{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}
.coin-value p{
    font-weight: 500;
    line-height: 160%;
    letter-spacing: -0.54px;
    color: var(--neutral-14);
}
.coin-value span{
    font-size: 15px;
    line-height: 120%;
    letter-spacing: -0.3px;
    color: var(--neutral-11);
}


/*  */
footer{
    padding: 16px 0;
}
.footer-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 0 16px 0;
    border-bottom: 1px solid var(--neutral-3);
}
.footer-infos{
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-info{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: normal;
    letter-spacing: -0.42px;
    color: var(--neutral-11);
    padding: 8px 12px;
    border-radius: 12px;
    border: 1px solid var(--neutral-3);
    text-align: center;
}
.footer-tokens{
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-token{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 14px;
    line-height: normal;
    letter-spacing: -0.42px;
    color: var(--neutral-11);
    padding: 8px 12px;
    border-radius: 12px;
    border: 1px solid var(--neutral-3);
    text-align: center;
}
.footer-bottom{
    padding: 16px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.footer-link{
    display: flex;
    padding: 6px 8px;
    justify-content: center;
    align-items: center;
    gap: 6px;

    font-size: 14px;
    line-height: normal;
    letter-spacing: -0.42px;
    border-radius: 999px;
    color: var(--neutral-11);
    text-decoration: none;
    background-color: var(--neutral-3);
}
.footer-bottom .footer-token{
    padding: 4px 12px 4px 4px;
}
.footer-bottom .footer-token span{
    display: flex;
    padding: 6px 8px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border-radius: 8px;
    background-color: var(--neutral-3);
}
.fees-grid{
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    gap: 48px;
}
.coin-block{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}
.coin-block .coin-badge div{
    align-items: center;
    flex-direction: row;
    gap: 4px;
}
.coin-block .coin-short__title{
    font-size: 18px;
    font-weight: 500;
    line-height: 160%;
    letter-spacing: -0.54px;
}
.fees-card{
    width: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    background-color: var(--neutral-2);
}
.fees-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 16px 24px;
    border-bottom: 1px solid var(--neutral-4);
    margin: 0 0 16px 0;
}
.fees-head p{
    font-size: 14px;
    line-height: normal;
    letter-spacing: -0.42px;
    color: var(--neutral-11);
}
.fees-list{
    list-style: none;
    padding: 0px 24px 24px 24px;
}
.fees-list li{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 0px 16px 0px;
    border-bottom: 1px solid var(--neutral-4);
    margin: 0 0 16px 0;
}
.fees-list li:last-child{
    padding: 0;
    border: none;
    margin: 0;
}
.fees-list p{
    font-size: 18px;
    font-weight: 500;
    line-height: 160%;
    letter-spacing: -0.54px;
    color: var(--neutral-11);
}
.fees-list span{
    color: var(--neutral-14);
}

/* FAQ */

.faq .section-top{
    margin: 0 0 48px 0;
}

.faq-row{
    display: flex;
    padding: 24px;
    flex-direction: column;
    border-radius: 24px;
    background-color: var(--neutral-2);
}
.faq-item{
    border-bottom: 1px solid var(--neutral-4);
    padding: 0;
    transition: var(--transition);
}
.faq-item:last-child{
    border: none;
}
.faq-item:has(input:checked){
    padding: 0 0 16px 0;
}
.faq-item:last-child:has(input:checked){
    padding: 0;
}
.faq-head{
    padding: 16px 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    transition: var(--transition);
    position: relative;
    cursor: pointer;
}
.faq-item:first-child .faq-head{
    padding: 0 0 16px 0;
}
.faq-item:last-child .faq-head{
    padding: 16px 0 0 0;
}
.faq-item:first-child:has(input:checked) .faq-head{
    padding: 0 0 8px 0;
}
.faq-item:has(input:checked) .faq-head{
    padding: 16px 0 8px 0;
}
.faq-title{
    font-size: 15px;
    line-height: 120%;
    letter-spacing: -0.3px;
    color: var(--neutral-14);
}
.faq-arr{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    transition: var(--transition);
}
.faq-item:has(input:checked) .faq-arr{
    transform: rotateX(-180deg);
}
.faq-head input{
    position: absolute;
    opacity: 0;
    visibility: hidden;
}
.faq-body{
    overflow: hidden;
    height: 0;
    transition: var(--transition);
}
.faq-item:has(input:checked) .faq-body{
    height: auto;
}
.faq-desc{
    max-width: 480px;
    font-size: 15px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.3px;
    color: var(--neutral-11);
}

/* exchange */
.exchange-card{
    margin: 0 auto 24px auto;
    max-width: 544px;
    position: relative;

    display: flex;
    padding: 36px;
    flex-direction: column;
    border-radius: 24px;
    background-color: var(--neutral-3);
}
.borders-line{
    display: flex;
    width: 100%;
    border-bottom: 8px dotted var(--neutral-1);
    position: relative;
}
.borders-line::before,
.borders-line::after{
    position: absolute;
    content: '';
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--neutral-1);
    top: 59%;
    transform: translate(0, -40%);
}
.borders-line::before{
    left: -53px;
}
.borders-line::after{
    right: -53px;
}
.change-coins{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0 0 24px 0;
}
.change-coin{
    width: 200px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}
.change-coin .coin-title,
.change-coin .coin-count{
    font-size: 15px;
    line-height: 120%;
    letter-spacing: -0.3px;
    color: var(--neutral-14);
}
.change-coins .swap{
    flex: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--neutral-4);
    border-radius: 50%;
}
.coin-price{
    font-size: 14px;
    line-height: normal;
    letter-spacing: -0.42px;
    color: var(--neutral-11);
}
.change-coin:last-child{
    align-items: flex-start;
}
.change-coins .coin-badge .order-coin-icon{
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    object-fit: contain;
    border-radius: 50%;
}

.adress-token{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 24px;
    border-radius: 12px;
    background-color: var(--neutral-4);
    margin: 0 0 36px 0;
}
.adress-remind{
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    line-height: normal;
    letter-spacing: -0.42px;
    color: var(--neutral-12);
}
.token-key{
    font-size: 20px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -0.8px;
    color: var(--neutral-14);
}
.address-field{
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
    max-width: 100%;
}
@media (min-width: 520px){
    .address-field{
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }
    .address-field .btn-copy-address{
        flex-shrink: 0;
        align-self: flex-start;
    }
}
.token-key.address-multiline{
    flex: 1;
    min-width: 0;
    max-width: 100%;
    word-break: break-all;
    overflow-wrap: anywhere;
    white-space: pre-wrap;
    line-height: 1.35;
    letter-spacing: normal;
    font-weight: 500;
    font-size: 15px;
}
.btn-copy-address{
    padding: 10px 16px;
    font-size: 14px;
}
.order-status-banner{
    margin: 0 0 20px 0;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid var(--neutral-4);
    background: var(--neutral-3);
    text-align: left;
}
.order-status-banner__title{
    margin: 0 0 6px 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--neutral-14);
    letter-spacing: -0.02em;
}
.order-status-banner__text{
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
    color: var(--neutral-11);
}
.order-status-banner--wait{
    border-color: #4a5a78;
    background: rgba(74, 122, 255, 0.08);
}
.order-status-banner--progress{
    border-color: #6a5c3a;
    background: rgba(255, 193, 7, 0.08);
}
.order-status-banner--ok{
    border-color: #2d5a3d;
    background: rgba(76, 175, 80, 0.1);
}

.exchange-card .line-divider{
    display: flex;
    height: 1px;
    width: calc(100% + 72px);
    margin: 0 0 0 -36px;
    background-color: var(--neutral-4);
}
.change-values{
    margin: 36px 0;
}
.change-values li{
    font-size: 15px;
    line-height: 120%;
    letter-spacing: -0.3px;
    color: var(--neutral-14);
    padding: 0 0 12px 0;
    border-bottom: 1px solid var(--neutral-4);
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.change-values li:last-child{
    padding: 0;
    border: none;
    margin: 0;
}
.change-values li p{
    color: var(--neutral-11);
}
.adress-group{
    margin: 36px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.adress-group .adress-token{
    margin: 0;
}
.adress-group .token-key{
    font-size: 15px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.3px;
}
.void-time{
    font-size: 14px;
    line-height: normal;
    letter-spacing: -0.42px;
    color: var(--neutral-12);
    margin: 0 auto 36px auto;
    border: 1px solid var(--neutral-4);
    position: relative;
    z-index: 1;
    border-radius: 12px;
}
.void-time span{
    color: var(--neutral-14);
}
.void-time > p:first-child{
    padding: 8px 12px;
    border-radius: 12px;
    background-color: var(--neutral-3);
}
.void-time .quote-refresh-hint{
    font-size: 12px;
    line-height: 1.45;
    color: var(--neutral-11);
    padding: 0 14px 12px;
    margin: 0;
    background: transparent;
}
.void-time::after{
    position: absolute;
    content: '';
    top: 50%;
    left: -50%;
    transform: translate(-23.2%, 0);
    width: 544px;
    height: 1px;
    background-color: var(--neutral-4);
    z-index: -1;
}

.exchange-actions{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.exchange-actions .btn-blue{
    width: 100%;
}
.exchange-actions .btn-default{
    width: calc(50% - 4px);
}

.exchange-note{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--neutral-3);
    max-width: 544px;
    margin: 0 auto;

    font-size: 14px;
    line-height: normal;
    letter-spacing: -0.42px;
    color: var(--neutral-12);
}

@media(max-width: 1200px){
    .section-title {
        font-size: 36px;
    }
    .footer-top,
    .footer-bottom,
    .footer-tokens,
    .footer-tokens{
        flex-wrap: wrap;
    }
}
@media(max-width: 992px){
    .header-row{
        justify-content: space-between;
        gap: 10px;
    }
    .for-space{
        display: none;
    }
    .transaction-inputs{
        flex-direction: column;
    }
    .transaction-inputs{
        margin: 0 0 36px 0;
    }
    .transaction-part{
        width: 100%;
    }
    .transaction-inputs .swap{
        top: 78px;
    }
    .transaction-tips{
        display: none;
    }
    .transaction-part .transaction-tip{
        display: flex;
    }
    .transaction-tip span:last-child{
        display: none;
    }
    .transaction-inputs:has(.swap input:checked) .transaction-tip span:first-child{
        display: none;
    }
    .transaction-inputs:has(.swap input:checked) .transaction-tip span:last-child{
        display: block;
    }
    .transaction-inputs:has(.swap input:checked){
        flex-direction: column-reverse;
    }
    .transaction-inputs:has(.swap input:checked) .transaction-part:last-child .transaction-input,
    .transaction-input,
    .transaction-part:last-child .transaction-input{
        padding: 12px;
    }
    .fees-grid{
        gap: 36px;
    }
    .fees .section-top{
        padding: 0 0 24px 0;
        margin: 0 0 24px 0;
    }
    .faq .section-top {
        margin: 0 0 24px 0;
    }
}
@media(max-width: 768px){
    .header {
        padding: 0 0 24px 0;
    }
    .section-top{
        flex-direction: column;
        gap: 24px;
    }
    .crypto .section-title{
        padding: 0;
    }
    .section-desc::before{
        width: 100%;
        height: 100%;
        transform: none;
    }
    .crypto .section-desc::before, .fees .section-desc::before{
        height: 100%;
    }
    .crypto .section-top {
        margin: 0 0 48px 0;
    }
    .transaction{
        padding: 36px 24px;
    }
    .section-title {
        font-size: 32px;
    }
    .value,
    .option-label{
        font-size: 14px;
        line-height: 120%;
    }
    .reverse{
        grid-template-columns: repeat(1, 2fr);
        gap: 16px;
    }
    .reverse-part{
        padding: 16px;
        border-radius: 12px;
    }
    main{
        padding: 0 0 24px 0;
    }

    .fees-grid{
        grid-template-columns: repeat(1, 2fr);
        gap: 20px;
    }
    .fees-card{
        border-radius: 16px;
    }
    .fees-head{
        padding: 16px;
    }
    .fees-list {
        padding: 0px 16px 16px 16px;
    }
    .fees-list p {
        font-size: 16px;
    }
    .exchange-card{
        padding: 24px;
        overflow: hidden;
    }
    .adress-token{
        padding: 16px;
    }
    .exchange-card .line-divider{
        width: calc(100% + 48px);
        margin: 0 0 0 -24px;
    }
    .transaction-infos{
        position: unset;
        margin: 0 auto 16px auto;
        display: inline-flex;
        transform: none;
    }
    .borders-line::before{
        left: -41px;
    }
    .borders-line::after{
        right: -41px;
    }
    .token-key {
        font-size: 16px;
        word-break: break-all;
    }
    .change-coin {
        width: 160px;
    }
    .change-coins{
        gap: 12px;
    }
    .exchange-note{
        padding: 16px;
    }
}
@media(max-width: 576px){
    .header-link {
        width: 80px;
    }

    .section-title {
        font-size: 28px;
    }
    .money-type input{
        font-size: 16px;
    }
    .transaction-actions{
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .transaction-btns{
        width: 100%;
    }
    .transaction-btns .btn{
        width: calc(50% - 4px);
    }
    .transaction-remember{
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px 2px;
        transform: translate(-50%, -60%);
    }
    .transaction-remember div{
        width: 100%;
        text-align: center;
    }
    .transaction {
        padding: 36px 16px 16px;
    }
    .money-type input {
        max-width: 120px;
    }
    .footer-token{
        text-align: left;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
        word-break: break-all;
    }
    .coin-block{
        gap: 12px;
    }
    .change-coin .coin-title, .change-coin .coin-count {
        font-size: 13px;
    }
    .exchange-card {
        padding: 24px 16px;
    }
    .coin-price {
        font-size: 13px;
    }
    .borders-line::before{
        left: -35px;
    }
    .borders-line::after{
        right: -35px;
    }
    .exchange-actions .btn-default {
        width: 100%;
    }
    .adress-token{
        margin: 0 0 24px 0;
    }
    .change-values {
        margin: 24px 0;
    }
    .adress-group {
        margin: 24px 0;
    }
    .void-time{
        margin: 0 auto 24px auto;
    }
    .btn{
        font-size: 16px;
    }
    .change-coins .coin-badge .order-coin-icon{
        width: 16px;
        height: 16px;
    }
    .change-coins {
        gap: 10px;
    }
    .brand-logo img{
        width: 100px;
    }
}