<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#donation-form table {
	border: 0;
	border-collapse: collapse;
	padding: 0 0;
	margin: 10px 0;
}

#donation-form table th {
	text-align: left;

	vertical-align: top;
	padding: 6px 8px;
}
#donation-form table td {
	text-align: left;
	font-weight: normal;
	line-height: 1.5;
	padding: 6px 8px;
}

#donation-form table input,
#donation-form table textarea,
#donation-form table select {
	padding: 4px 10px;
	border: 1px solid #E8E8E8;
	line-height: 1.5;
	border-radius: 3px;
	box-shadow: none;
}

#donation-form table textarea {
	width: 100%;
	min-height: 100px;
}

#donation-form .error &gt; textarea,
#donation-form .error &gt; select,
#donation-form .amount-field.error,
#donation-form .error &gt; input[type="text"],
#donation-form .error &gt; input[type="number"],
#donation-form .error &gt; input[type="email"],
#donation-form .error &gt; input[type="date"] {
	border: 1px solid red !important;
}

#donation-form label.error a,
#donation-form label.error {
	color: red;
}

#donation-form div.amount-field div.amount-item.error input {
	border: 1px solid red !important;
}


#donation-form button,
#donation-form input[type="submit"] {
	background: #2271b1;
	border-color: #2271b1;
	color: #fff;
	font-size: 13px;
	text-decoration: none;
	text-shadow: none;
	min-height: 32px;
	padding: 5px 12px;
	text-align: center;
	display: inline-block;
	cursor: pointer;
	border-width: 1px;
	border-style: solid;
	border-radius: 3px;
	white-space: nowrap;
	box-sizing: border-box;
}

/**
 Amount price field
 */

.amount-field {
	padding: 5px 0;
}

.amount-field div.amount-item {
	display: inline-block;
	padding: 14px 24px;
	text-align: center;
	border: 1px solid #EEE;
	font-size: 22px;
	cursor: pointer;
	margin-right: 4px;
	overflow: hidden;
	background-color: initial;
}

.amount-field div.amount-item.amount-selected {
	border-color: #de8831;
	background-color: #EEE;
}

.amount-field .amount {
	font-weight: 700;
}

.amount-field .currency {
	font-size: 16px;
}
</pre></body></html>