.withdrawals input[type=checkbox] {
  display: none;
}

.withdrawals .currency {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.withdrawals .currency .withdraw-label {
    display: flex;
    justify-content: space-between;
    height: 4em;
    align-items: center;
    width: 100%;
    cursor: pointer;
}

.withdrawals .currency .withdraw-label span {
    display: flex;
    align-items: center;
    gap: 1em;
}

.withdrawals .currency .withdraw-label img {
    width: 2em;
}

.withdraw-history {
    background: #10f4b121;
    height: 3em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #10f4b1;
    width: 90%;
    padding: 0 1em;
    border-radius: .5em;
    margin-top: 1em;
}

.withdraw-history span {
    display: flex;
    align-items: center;
    gap: 1em;
}

.wallet {
    height: 0;
    width: 100%;
    position: absolute;
    top: 0;
    background: #0e1327;
    color: #f0f0f0;
    overflow: scroll;
    top: 100%;
}

.wallet .header {
    height: 4em;
    display: flex;
    align-items: center;
}

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

.qr img {
    width: 10em;
    margin: 1em 0;
}

#withdraw-btc:checked ~ .withdraw-btc {
    top: 0;
    height: 90vh;
    padding: 0 1em;
    left: 0;
}

#withdraw-usdt:checked ~ .withdraw-usdt {
    top: 0;
    height: 90vh;
    padding: 0 1em;
    left: 0;
}

#withdraw-eth:checked ~ .withdraw-eth {
    top: 0;
    height: 90vh;
    padding: 0 1em;
    left: 0;
}

#withdraw-trc:checked ~ .withdraw-trc {
    top: 0;
    height: 90vh;
    padding: 0 1em;
    left: 0;
}

#withdraw-usdt-trc:checked ~ .withdraw-usdt-trc {
    top: 0;
    height: 90vh;
    padding: 0 1em;
    left: 0;
}

.wallet .amount, .wallet .wallet-address, .wallet .screenshot {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wallet input[type=text], .wallet input[type=number], .wallet input[type=password] {
    background: #161a33;
    color: #fff;
    border: 1px solid #292d44;
    width: 100%;
    height: 3em;
    padding: 0 1em;
    border-radius: .7em;
    margin-bottom: .7em;
}

.wallet .copy {
    background: #f2ecff;
    color: #613af1;
    border: none;
    height: 3em;
    width: 10em;
    border-radius: .5em;
    margin-top: 1em;
}

.uploadTransaction {
    background: #613af1;
    color: #fff;
    border: none;
    height: 3em;
    width: 100%;
    border-radius: .7em;
    margin-top: 3em;
}

.image-preview img {
    border-radius: .4em;
}

.wallet input[type=file] {
    display: none;
}

.wallet label.mockFile {
    height: 10em;
    width: 100%;
    border: 1px solid #292d44;
    border-radius: .8em;
    margin: .5em 0;
    display: flex !important;
    justify-content: center;
    align-items: center;
    color: #a2a3ad;
    font-weight: 900;
    gap: 1em;
}

.wallet label {
    display: block;
    width: 100%;
    text-align: left;
    color: #98a1a9;
    margin-bottom: .7em;
}
.sub-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1em 0;
    margin-bottom: 2em;
}
.sub-header .name {
  display: flex;
  gap: 1em;
  align-items: center;
}
.sub-header .name p {
  text-transform: capitalize;
}
.sub-header .name img {
  width: 2.5em;
}