Order your debit MasterCard

Sonic Shipping Label
Meet the Sonic Shipping Card
The customizable, no hidden fee, MasterCard Debit card
jQuery(document).ready(function($) { $('.custom-radio-group input[type="radio"]').change(function() { if ($(this).val() === '$20') { $('#conditionalField').addClass('flex-display'); } else { $('#conditionalField').removeClass('flex-display'); } $('#selectedOption').text('Selected Option: ' + $('input[name="payment_option"]:checked').val()); $('#selectedOption').text('Selected Option: ' + $('input[name="payment_option"]:checked').val()); }); });
Purchase your card
Payment Amount

Credit/Debit Card Details

Card field is disabled

jQuery(document).ready(function($) { // Select the input field with the specific class var cardNumInput = $('.elementor-field-textual[value="card-num"]'); // Add the 'disabled' attribute to the input field cardNumInput.prop('disabled', true); });
Shipping Details
Do you have a FREIGHT FORWARDER US shipping address? *
.hidden { display: none; } function showFields() { var yesRadio = document.querySelector('input[value="yes"]'); var code1Fields = document.getElementById('code1Fields'); var code2Fields = document.getElementById('code2Fields'); if (yesRadio.checked) { code1Fields.classList.remove('hidden'); code2Fields.classList.add('hidden'); } else { code1Fields.classList.add('hidden'); code2Fields.classList.remove('hidden'); } }