/* Reset native styles */
input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #9f998b;
  border-radius: 10%;
  cursor: pointer;
  display: inline-block;
  position: relative;
}

/* Optional: checkmark when checked */
input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 6px;
  width: 5px;
  height: 10px;
  border: solid #9f998b;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #9f998b;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  cursor: pointer;
  position: relative;
  display: inline-block;
}
.visually-hidden {
  /* visibility:hidden; */
  display: none;
}

/* Inner golden dot when selected */
input[type="radio"]:checked::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4.5px;
  width: 8px;
  height: 8px;
  background-color: #9f998b;
  border-radius: 50%;
}
