.wealth-management-chart-table-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.table-wrapper {
  border-radius: 20px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 8px 14px 0px rgba(0, 20, 83, 0.15);
}
.table-wrapper table {
  margin: 0;
  font-size: 18px;
  color: var(--e-global-color-text);
  table-layout: fixed;
}
.table-wrapper table thead tr {
  border-bottom: 2px solid #85d0e5;
}
.table-wrapper table tbody tr:hover {
  background: #edfafc;
  cursor: pointer;
}
.table-wrapper table tr th {
  padding: 0 0 20px;
  border: none !important;
}
.table-wrapper table tbody tr:hover {
  background: #edfafc;
  cursor: pointer;
}
.table-wrapper table td,
.table-wrapper table th {
  padding: 10px;
  border: none;
  background: transparent !important;
  text-align: center;
}
.table-wrapper table tbody td:first-of-type {
  border-right: 1px solid #c2e7f2;
}
.table-wrapper table tbody td:last-of-type {
  border-left: 1px solid #c2e7f2;
}
.table-wrapper table tbody td:last-of-type:after {
  content: "%";
}
.table-wrapper tbody:before,
.table-wrapper tbody:after {
  content: "";
  height: 10px;
  display: block;
}
.table-wrapper table tfoot {
  border-top: 1px solid #85d0e5;
}
.table-wrapper table tfoot tr td:first-of-type {
  text-align: right;
  font-weight: 600;
}
@media (max-width: 600px) {
  .table-wrapper {
    overflow-x: scroll;
  }
  .table-wrapper table {
    font-size: 14px;
    width: 1000px;
  }
}
