in client/components/mma/paymentUpdate/dd/DirectDebitLegal.tsx [26:82]
public render(): React.ReactNode {
return (
<div
css={css`
${this.props.inner ? `padding-top: 5px;` : baseStyle}
`}
>
Your payments are protected by the{' '}
<a
css={hrefStyle}
onClick={this.toggleGuaranteeDisplay}
onKeyPress={this.toggleGuaranteeDisplay}
tabIndex={0}
>
Direct Debit guarantee.
</a>
<ul
css={css`
display: ${this.state.expanded ? 'block' : 'none'};
padding-left: 30px;
`}
>
<li>
The Guarantee is offered by all banks and building
societies that accept instructions to pay Direct Debits
</li>
<li>
If there are any changes to the amount, date or
frequency of your Direct Debit Guardian News & Media Ltd
will notify you at least three working days in advance
of your account being debited or as otherwise agreed.
</li>
<li>
If you ask Guardian News & Media Ltd to collect a
payment, confirmation of the amount and date will be
given to you at the time of the request.
</li>
<li>
If an error is made in the payment of your Direct Debit
by Guardian News & Media Ltd or your bank or building
society, you are entitled to a full and immediate refund
of the amount paid from your bank or building society.
</li>
<li>
If you receive a refund you are not entitled to, you
must pay it back when Guardian News & Media Ltd asks you
to.
</li>
<li>
You can cancel a Direct Debit at any time by contacting
your bank or building society. Written confirmation may
be required. Please also notify us.
</li>
</ul>
</div>
);
}