/* === Wallet account === */

.dz-wallet-balance-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, 250px);
    gap: 20px;
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
}

.dz-wallet-balance-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: var(--white);
    box-shadow: var(--shadow);
    font-size: 16px;
}

.dz-wallet-balance-item .dz-wallet-balance-name {
    margin-right: 20px;
    font-size: 14px;
}

.dz-wallet-balance-item .dz-wallet-balance-amount {
    color: var(--primary);
    font-size: 20px;
    font-weight: 600;
}

#dz-wallet-recharge {
    display: grid;
    grid-auto-flow: row;
    gap: 20px;
    justify-content: center;
    width: 100%;
    text-align: center;
}

.dz-wallet-shops,
.dz-wallet-products {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#dz-wallet-shops-list {
    width: 200px;
}

#dz-wallet-products-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, 80px);
    justify-content: center;
    gap: 10px;
    width: 260px;
}

.dz-wallet-products-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

/* === Wallet history === */

#dz-wallet-history {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    box-shadow: var(--shadow);
    overflow-x: auto;
}

.dz-wallet-history {
    font-weight: 600;
}

.dz-wallet-history.credit {
    color: var(--alert-success-text);
}

.dz-wallet-history.debit {
    color: var(--alert-error-text);
}

@media (min-width: 640px) {
    #dz-wallet-warning {
        margin-top: 30px;
    }

    #dz-wallet-recharge {
        grid-template-rows: initial;
        grid-auto-flow: column;
        gap: 30px;
    }
}

@media (min-width: 1280px) {

}
