<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Hide the Donation label and section heading in the form */
.BBFormSectionHeading {
    display: none;
}

/* Apply Mulish font to all elements within the form with ID bboxdonation_divForm */
#bboxdonation_divForm {
    font-family: 'Mulish', sans-serif; /* Using Mulish font */
}

/* Additional style for all links within the form */
#bboxdonation_divForm a {
    font-size: 16px !important; /* Setting font size */
    color: #ED670E; /* Setting font color */
}

/* Specific style for the UK Gift Aid terms span */
#bboxdonation_gift_lblUKGiftAidTerms {
    font-size: 16px !important; /* Adjusting font size */
    font-style: normal; /* Removing italic style */
}

/* Adding space above the UK Gift Aid terms span with ::before pseudo-element */
#bboxdonation_gift_lblUKGiftAidTerms::before {
    content: '';
    display: block;
    height: 20px; /* Height of the space above */
}

/* Change font size for the element with ID bboxdonation_gift_lblUKGiftAid */
#bboxdonation_gift_lblUKGiftAid {
    font-size: 16px; /* Adjust the font size as needed */
}

/* Change font size and weight for elements with class BBFormRadioAmount and BBFormRadioDescriptionOther */
.BBFormRadioAmount, .BBFormRadioDescriptionOther {
    font-size: 24px; /* Set the font size to 24px */
    font-weight: 700; /* Set the font weight to 700 (bold) */
}

/* Remove rounded corners from elements with class BBFormRadioLabelGivingLevelSelected */
.BBFormRadioLabelGivingLevelSelected {
    border-radius: 0 !important; /* Set border radius to 0 to remove rounded corners */
}</pre></body></html>