:root
{
    /*green*/
    --green-wallet-name-color:grey;
    --green-wallet-amount-color:black;
    --green-wallet-background-color:#fff;
    --green-wallet-border-color:transparent;

    /* maroon */
    --maroon-wallet-name-color:grey;
    --maroon-wallet-amount-color:black;
    --maroon-wallet-background-color:#fff;
    --maroon-wallet-border-color:transparent;

    /* blue */
    --blue-wallet-name-color:grey;
    --blue-wallet-amount-color:black;
    --blue-wallet-background-color:#fff;
    --blue-wallet-border-color:transparent;

    /*usd*/
    --usd-wallet-name-color:grey;
    --usd-wallet-amount-color:black;
    --usd-wallet-background-color:#fff;
    --usd-wallet-border-color:transparent;

    /*rosegold*/
    --rosegold-wallet-name-color:#000;
    --rosegold-wallet-amount-color:#957a69;
    --rosegold-wallet-background-color:rgba(255, 255, 255, .5);
    --rosegold-wallet-border-color:transparent;

    /*blackgreen*/
    --blackgreen-wallet-name-color:#fff;
    --blackgreen-wallet-amount-color:#fff200;
    --blackgreen-wallet-background-color:#303030;
    --blackgreen-wallet-border-color:#fff200;

    /*brown*/
    --brown-wallet-name-color:grey;
    --brown-wallet-amount-color:black;
    --brown-wallet-background-color:#fff;
    --brown-wallet-border-color:transparent;
}
/*color*/
.outer_box_cover
{
    background-color: var(--wallet-background-color);
    border-color: var(--wallet-border-color);
}

#withdraw_wrap .amount_box .amount_input_phfake
{
    color: var(--wallet-name-color);
}

.wallet_list_wrap .wallet_list .wallet_name,
.main_wallet_wrap .main_wallet_list .wallet_wrap .wallet_name
{
    color:var(--wallet-name-color);
}

.main_wallet_wrap .main_wallet_list .wallet_wrap .wallet_balance,
.wallet_list_wrap .wallet_list .wallet_balance
{
    color: var(--wallet-amount-color);
}

/* Wallet */
.main_wallet_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 16vw;
}

.main_wallet_wrap .main_wallet_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 65%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 10px;
}

.main_wallet_wrap .main_wallet_list .wallet_img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 15%;
    flex: 0 0 15%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.main_wallet_wrap .main_wallet_list .wallet_img>img {
    height: 100%;
    width: auto
}

.main_wallet_wrap .main_wallet_list .wallet_wrap {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-left: 5px
}

.main_wallet_wrap .main_wallet_list .wallet_balance .spinner.ng-hide {
    display: none
}

.main_wallet_wrap .main_wallet_list .wallet_balance .spinner {
    display: inline-block;
    width: 5vw;
    height: 5vw;
    font-size: var(--standard-font-size);
    -webkit-animation: spinner-rotate 2s linear infinite;
    animation: spinner-rotate 2s linear infinite
}

.main_wallet_wrap .main_wallet_list .wallet-button
{
    font-size: var(--content-font-size);
    color: #fff;
    padding: 2.5vw 4vw;
    margin-right: 3vw;
    border: 0;
    border-radius: 5px
}


.wallet_list_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 3vw 2vw;
    border:0px;
}

.wallet_list_wrap .wallet_list {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
    flex: 0 0 25%;
    width: 25vw;
    height: 15vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 5px 0;
    box-shadow: inset 0 -1px 0 rgba(255,255,250,.3),inset 0 -2px 0 rgba(0,0,0,.1);
    overflow: hidden
}
.wallet_list_wrap .wallet_list .wallet_name {
    font-size: 2.7vw;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    text-align: center;
    width: 20vw;
    font-size: var(--content-font-size);
}

.wallet_list_wrap .wallet_list .wallet_balance {
    font-size: var(--content-font-size);
    padding-top: 2px;
    font-weight: 700;
}

.main_wallet_wrap .spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 4vw;
    width: 10vw;
    font-size: var(--standard-font-size);
    -webkit-animation: spinner-rotate 2s linear infinite;
    animation: spinner-rotate 2s linear infinite
}

.wallet_list_wrap .spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 5vw;
    height: 5vw;
    font-size: var(--standard-font-size);
    -webkit-animation: spinner-rotate 2s linear infinite;
    animation: spinner-rotate 2s linear infinite
}

.main_wallet_wrap .spinner.ng-hide,
.wallet_list_wrap .spinner.ng-hide {
    display: none
}

.main_wallet_wrap .spinner>img,
.wallet_list_wrap .spinner>img {
    height: 100%;
    width: auto
}

.wallet_list_wrap .maintaince {
    color: red
}

.wallet_list_wrap .wallet_list.bdr_btm_hide {
    border: 0
}

.wallet_list_wrap .wallet_list.bdr_btm_hide.bdr_btm_hide_full {
    border: 0
}
