/* Hide the radio input circle */
.webform-submission-form input[type="radio"] {
  display: none;
}

.webform-submission-form .form-item-other-amount-radios {
  display: inline-block;
  margin-right: 10px;
}

/* Style the label as a button */
.webform-submission-form .donation label {
  padding: 10px 10px;
  width: 120px;
  border: 1px solid #ccc;
  border-radius: 8px;
  cursor: pointer;
  margin-right: 5px;
  margin-bottom: 10px;
  font-size: 22px;
}

/* Hide the radio input circle */
.webform-submission-form .receipt input[type="radio"] {
  display: none;
}

.webform-submission-form .form-check {
  display: inline-block;
  margin-right: 15px;
}

/* Style the label as a button */
.webform-submission-form .receipt label {
  padding: 10px 10px;
  width: 100px;
  border: 1px solid #ccc;
  border-radius: 8px;
  cursor: pointer;
  margin-right: 5px;
}


/* Highlight the "button" when selected */
.webform-submission-form input[type="radio"]:checked + label {
  background: #00ADEF; /* Standard SNP Blue */
  color: #fff;
  border-color: #005a91;
}

/* Hide breadcrumb */
.breadcrumb {
    display: none !important;
}