.deposits input[type=checkbox] {
  display: none;
}
.deposits .currency {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.deposits .currency .depo-label {
    display: flex;
    justify-content: space-between;
    height: 4em;
    align-items: center;
    width: 100%;
    cursor: pointer;
}
.deposits .currency .depo-label span {
 display: flex;
 align-items: center;
 gap: 1em;
}

.deposits .currency .depo-label img {
    width: 2em;
}
.depo-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;
}
.depo-history span {
    display: flex;
    align-items: center;
    gap: 1em;
}
.wallet {
    height: 0;
    width: 100%;
    /* max-width: 500px; */
    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;
}
#depo-btc:checked ~ .depo-btc {
    top: 0;
    height: 90vh;
    padding: 0 1em;
    left: 0;
}
#depo-usdt:checked ~ .depo-usdt {
    top: 0;
    height: 90vh;
    padding: 0 1em;
    left: 0;
}
#depo-eth:checked ~ .depo-eth {
    top: 0;
    height: 90vh;
    padding: 0 1em;
    left: 0;
}
#depo-trc:checked ~ .depo-trc {
    top: 0;
    height: 90vh;
    padding: 0 1em;
    left: 0;
}
#depo-usdt-trc:checked ~ .depo-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] {
    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;
}