form#zakat-calculator input[type=radio] {
  display: none;
}
.gold-row {
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.zakat-donut {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: auto;
  background: conic-gradient(#6c757d 0% 0%, #e9ecef 0% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.zakat-donut::after {
  content: "";
  position: absolute;
  width: 150px; /* size of inner hole */
  height: 150px;
  background: #fff;
  border-radius: 50%;
}

.net-worth-text::before,
.zakat-text::before,
.zakat-nisab-text::before {
  content: ""; /* the dot */
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #e9ecef;
  border-radius: 50%;
}

.zakat-text::before {
  background: var(--primary-color);
}

.zakat-nisab-text::before {
  background: var(--secondary-color);
}