.title {
    margin: 0 0 10px;
    font-size: 28px;
    font-weight: 600;
}

.subtitle {
    font-size: 16px;
    color: #748A96;
}

.manage_wrap {
    background: #001b731f;
    padding: 15px 20px;
    border-radius: 20px;
    margin: 20px 0;
}

.manage_header_wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.back {
    border: none;
    background: transparent;
    cursor: pointer;
}

.header_title_block {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: auto;
    border: 2px solid #001b73;
    border-radius: 33px;
    width: 100%;
    max-width: 600px;
    height: 52px;
}

.header_title {
    width: 100%;
    background: none;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.h_t {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

.header_title.active {
    width: 65%;
    border-radius: 33px;
    background: linear-gradient(261.22deg, #232E87 -27.9%, #001942 54.23%);
    color: #fff;
}

.none {
    width: 50%;
    background: none;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #fff;
}

.main_content {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    margin: 20px auto;
    gap: 20px;
}

.select_wrap_content {
    position: relative;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(33.7deg, #000101 20.01%, #0D1024 81.43%);
    background-clip: content-box;
    display: flex;
    width: 100%;
    flex-direction: column;
    margin-left: 10px;
}

.select_wrap_content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(221deg, rgba(25, 36, 51, 1) 0%, rgb(57 123 193) 50%, rgba(21, 44, 69, 1) 100%);
    border-radius: inherit;
    z-index: -1;
    padding: 1px;
    box-sizing: border-box;
}

.select_wrapping {
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.select_wrap {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.select_block {
    width: 100%;
    box-sizing: border-box;
}

.label {
    font-size: 14px;
    font-weight: 500;
}

.wallet_content {
    position: relative;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(33.7deg, #000101 20.01%, #0D1024 81.43%);
    background-clip: content-box;
    display: flex;
    width: 100%;
    margin-left: 10px;
}

.wallet_content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(221deg, rgba(25, 36, 51, 1) 0%, rgb(57 123 193) 50%, rgba(21, 44, 69, 1) 100%);
    border-radius: inherit;
    z-index: -1;
    padding: 1px;
    box-sizing: border-box;
}

.wallet_block {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 15px 20px;
    width: 100%;
}

.address_wrap {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

.qr {
    width: 220px;
    height: 220px;
}

.address_block {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.address_text {
    margin: 0;
    color: #4A4A4A;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4em;
}

.address_text > span {
    color: #3195FF;
}

.address_wallet {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border: 1px solid #001b73;
    cursor: pointer;
    border-radius: 8px;
}

.address_wallet > p {
    font-size: 14px;
    margin: 0;
    color: #829CA8;
}

.copy_block > span {
    font-size: 14px;
    color: #3195FF;
}

.copy_block {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Custom Dropdown Styles */
/* Custom Dropdown */
.custom_dropdown {
    position: relative;
    width: 100%;
    margin-top: 5px;
}

/* Select button */
.custom_select {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    background: linear-gradient(180deg, #0D1225 0%, #080A14 100%);
    border: 1px solid rgba(49, 149, 255, 0.2);
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.3s ease;
}

/* Active state */
.custom_dropdown.active .custom_select {
    border-color: #3195FF;
    box-shadow: 0 0 20px rgba(49,149,255,.25);
}

.custom_dropdown.active {
    background: none;
}

/* Display */
.custom_select__display {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 14px;
    flex: 1;
}

/* Arrow */
.custom_select__arrow {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.custom_dropdown.active .custom_select__arrow {
    transform: rotate(180deg);
}

/* Options */
.custom_select__options {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #0D1225 0%, #080A14 100%);
    border: 1px solid rgba(49, 149, 255, 0.3);
    border-radius: 14px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s ease;
    z-index: 100;
}

.custom_dropdown.active .custom_select__options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Option */
.custom_select__option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 10px;
    cursor: pointer;
    color: #fff;
    transition: background .2s ease;
}

.custom_select__option:hover {
    background: rgba(49,149,255,.12);
}

.custom_select__icon, .custom_select__option-icon {
    height: 20px;
}

.ico_crypto {
    height: 20px;
    width: 20px;
}

.custom_select__option[data-value="more"] {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.custom_select__option.selected {
    background: rgba(49,149,255,.2);
    color: #3195FF;
}

/* Hide native select */
.custom_dropdown select {
    display: none;
}

/* Dropdown arrow SVG */
.arrow-svg {
    width: 12px;
    height: 12px;
}

.arrow-svg path {
    stroke: #707070;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.balance_wrap {
    display: flex;
    flex-direction: column;
}

.balance_block {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    background: linear-gradient(180deg, #0D1225 0%, #080A14 100%);
    border: 1px solid rgba(49, 149, 255, 0.2);
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.3s ease;
    margin: 10px 0;
}

.address_input {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 18px;
    background: transparent;
    border: 1px solid rgba(49, 149, 255, 0.2);
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.3s ease;
    color: #fff;
    outline: 1px solid #001b73;
    font-family: 'Montserrat', sans-serif;
}

.amount_wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.amount_block_wrap {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.amount_input {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    background: transparent;
    border: 1px solid rgba(49, 149, 255, 0.2);
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.3s ease;
    width: 100%;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    outline: 1px solid #001b73;
}

.btn_max {
    max-width: 100px;
    width: 100%;
    border-radius: 8px;
    background: linear-gradient(261.22deg, #232E87 -27.9%, #001942 54.23%);
    border: 1px solid #001b73;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
}

#qr_container {
    width: 220px;
    height: 220px;
    background: #ffffff;
    border-radius: 10px;
    padding: 10px;
    box-sizing: border-box;
}

#qr_container canvas,
#qr_container img {
    width: 100%;
    height: 100%;
}

#withdraw_form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.btn_withdraw {
    display: flex;
    width: 75%;
    align-items: center;
    margin: auto;
    background: linear-gradient(90deg, #232E87 0%, #001942 100%);
    border-radius: 32px;
    border: 2px solid #001b73;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 18px;
    justify-content: center;
    cursor: pointer;
}


@media screen and (max-width: 860px) {
    .back {
        display: none;
    }

    .address_wrap {
        flex-direction: column;
    }

 #address_wallet {
    max-width: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

  .copy_block {
    display: flex;
  }
  
  .select_wrap_content, .wallet_content {
    margin-left: 0;
  }
  
}


