.hv-wallet {
    position: relative;
    overflow: hidden;
    flex-grow: 1;
}

.hv-wallet-card {
    position: absolute;
    padding: 0 1em;
    top: 90%;
    height: 70%;
    background-color: #FFFFFF;
    color: #000000;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    overflow: hidden;
    transition: top 0.2s ease-in-out, bottom 0.2s ease-in-out;
    margin: 0 auto;
    left: 1em;
    right: 1em;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.hv-wallet-card.expanded {
    top: 5%;
    overflow: auto;
}