.my-wallet-topup-list input:checked ~ label {
  border: 1px solid var(--primary) !important;
}

.list-wallet-history li {
  padding-left: 15px;
  position: relative;
}
.list-wallet-history li.active::before {
  background-color: var(--primary) !important;
}
.list-wallet-history li.active::after {
  background-color: var(--primary) !important;
}
.list-wallet-history li::before {
  position: absolute;
  height: 8px;
  width: 8px;
  content: "";
  border-radius: 50%;
  left: 0;
  background-color: var(--gray);
}
.list-wallet-history li:not(:last-child)::after {
  height: calc(100% - 18px);
  width: 1px;
  content: "";
  background-color: var(--gray);
  position: absolute;
  left: 3px;
  top: 30px;
}