.wallet-container {
  display: flex;
  justify-content: center;
}

.wallet-table {
  display: grid;
  grid-template-columns: 140px 220px 160px 160px;
  grid-gap: 0;
  align-items: center;
  background: rgba(0, 0, 0, 1);
  margin: 0 auto;
}

.wallet-table-odd {
  background: rgba(15, 15, 15, 1);
}

.wallet-table-header {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  display: flex;
  color: #919196;
  justify-content: center;
  padding: 20px 0;
  background: rgba(37, 37, 37, 1);
  width: auto;
  margin: 0;
}

.wallet-table-header-first {
  justify-content: start;
  margin: 0;
  padding-left: 24px;
}

.wallet-table-header-empty {
  height: max-content;
  padding: 32px;
}

.wallet-table-ceil {
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
  height: 56px;
  align-items: center;
  overflow: hidden;
}

.wallet-table-ceil-img {
  padding-top: 22px;
  padding-bottom: 22px;
}

.wallet-table-ceil-payment-icon {
  max-width: 175px;
}

@media (max-width: 720px) {
  .wallet-table {
    display: grid;
    grid-template-columns: 120px 100px 100px;
    grid-gap: 0;
  }

  .wallet-table-header {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
  }

  .wallet-table-header-left {
    display: none;
  }
}
