/*
|--------------------------------------------------------------------------
| Wallet Layout
|--------------------------------------------------------------------------
*/

.wallet-page{

    width:100%;

    animation:fadeIn .35s ease;

}

.wallet-section{

    margin-top:30px;

}

@keyframes fadeIn{

    from{

        opacity:0;

        transform:translateY(10px);

    }

    to{

        opacity:1;

        transform:none;

    }

}