.payment-method-selection-section { margin-top: 100px; } .payment-amount-selection-section, .currency-selection-section { margin-top: 15px; } .currency-unselected { background: #f7f6f2; color: #1d082a; border: 1px solid; } .simpay-form-description, .simpay-embedded-heading.simpay-styled, .simpay-form-control.simpay-plan-select-container { display: none!important; } #full-amount-btn, #deposit-btn { width: auto; margin-top: 15px; } /* Invoice details CSS */ .simpay-optional-indicator { display: none; } input[type="checkbox"] { margin: 5px 5px 0 0; } /* #simpay-form-9044-field-16, #simpay-form-9044-field-18, #simpay-form-9044-field-19 { opacity: 0.4; cursor: no-drop; } label[for=simpay-form-9044-field-16], label[for=simpay-form-9044-field-18], label[for=simpay-form-9044-field-19] { opacity: 0.4; } .activate-field #simpay-form-9044-field-16, .activate-field #simpay-form-9044-field-18, .activate-field #simpay-form-9044-field-19, .activate-field label[for=simpay-form-9044-field-16], .activate-field label[for=simpay-form-9044-field-17], .activate-field label[for=simpay-form-9044-field-18], .activate-field label[for=simpay-form-9044-field-19] { opacity: 1 !important; cursor: initial !important; }/*

[simpay id=”10147″]

By placing your order you agree to our Terms & Conditions and Privacy Policy.

Review your order

Product

Diploma in
Corporate
Governance              £3,995
– Self-paced

Total              £3,995

Product

Diploma in Corporate Governance – Self-paced

Total

£3,995

£3,995

“Excellent programme, content very relevant to existing and aspiring Board members. Lecturers were top class and very engaging and great participation and conversations with other members of the programme. Excellent support provided by the team in CGI and the online format worked very well with lots of time for interactive sessions and learning from peers.”

Aubrey-Boyd

Audrey Boyd

Delegate

.review-order-3-4 { max-width: 450px; } .review-order-1-4 { max-width: 150px; } .simpay-address-container.simpay-billing-address-container { margin-top: 0; } /* * Checkout hiding/showing billing fields */ /* Address fields */ .simpay-address-billing-container-label, .simpay-address-street-container, .simpay-address-city-container, .simpay-address-state-container, .simpay-address-zip-container { display: none !important; } .show-field.show-address-field .simpay-address-billing-container-label, .show-field.show-address-field .simpay-address-street-container, .show-field.show-address-field .simpay-address-city-container, .show-field.show-address-field .simpay-address-state-container, .show-field.show-address-field .simpay-address-zip-container { display: block !important; } /* Other fields */ div#\31 4, #simpay-form-10147-field-16, label[for='simpay-form-10147-field-16'], #simpay-form-10147-field-18, label[for='simpay-form-10147-field-18'], #simpay-form-10147-field-19, label[for='simpay-form-10147-field-19'] { display: none !important; } .show-field div#\31 4, .show-field #simpay-form-10147-field-16, .show-field label[for=simpay-form-10147-field-16], .show-field #simpay-form-10147-field-18, .show-field label[for=simpay-form-10147-field-18], .show-field #simpay-form-10147-field-19, .show-field label[for='simpay-form-10147-field-19']{ display: block !important; } const billingFieldsSection = document.getElementById('simpay-form-10147'); const whoIsPayingDropdown = document.getElementById('simpay-form-10147-field-13'); const billingAddressCheckbox = document.getElementById('simpay-form-10147-field-19'); const toggleBillingAddress = () => { if(billingAddressCheckbox.checked) { billingFieldsSection.classList.add('show-address-field'); } else { billingFieldsSection.classList.remove('show-address-field'); } } const toggleBillingFieldsSection = () => { if(whoIsPayingDropdown.value == 'Company') { billingFieldsSection.classList.add('show-field'); } else { billingFieldsSection.classList.remove('show-field'); billingAddressCheckbox.checked = false; billingAddressCheckbox.dispatchEvent(new Event('click')); } } whoIsPayingDropdown.addEventListener('change', toggleBillingFieldsSection); billingAddressCheckbox.addEventListener('click', toggleBillingAddress);