.hcard-bank {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.hcard-bank-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  cursor: pointer;
}
.hcard-bank-item img {
  max-height: 45px;
  max-width: 100%;
}
.hcard-bank-item.active {
  border: 1px solid #cc2323;
}
.hcard-type {
  display: none;
}
.hcard-type.active {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}
.hcard-type-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  cursor: pointer;
}
.hcard-type-item img {
  max-height: 36px;
  max-width: 100%;
}
.hcard-type-item.active {
  border: 1px solid #cc2323;
}
.hcard-table {
  display: none;
}
.hcard-table.active {
  display: block;
}
