Contact Us
Since 1955, the Wakunaga group of companies has been leading the way in the research and development of high-quality medicinal herbs. Kyolic Aged Garlic Extractâ„¢ is now available to consumers across the globe.
We love to hear from our customers. Please contact us using the form if you have any questions or concerns.
input[type="submit"].disabled,
input[type="submit"].button-disabled,
input[type="submit"]:disabled,
input[type="submit"].disabled:hover,
input[type="submit"].button-disabled:hover,
input[type="submit"]:disabled:hover {
background-color: #cccccc !important;
background-image: none !important;
border-color: #cccccc !important;
color: #666666 !important;
cursor: not-allowed !important;
opacity: 0.6 !important;
pointer-events: none !important;
}
/* Avada-specific overrides */
.gform_footer input[type="submit"].fusion-button.disabled,
.gform_footer input[type="submit"].fusion-button.button-disabled,
.gform_footer input[type="submit"].fusion-button:disabled,
.gform_footer input[type="submit"].fusion-button.disabled:hover,
.gform_footer input[type="submit"].fusion-button.button-disabled:hover,
.gform_footer input[type="submit"].fusion-button:disabled:hover,
.gform_footer .fusion-button.disabled,
.gform_footer .fusion-button.button-disabled,
.gform_footer .fusion-button:disabled,
.gform_footer .fusion-button.disabled:hover,
.gform_footer .fusion-button.button-disabled:hover,
.gform_footer .fusion-button:disabled:hover {
background-color: #cccccc !important;
background-image: none !important;
border-color: #cccccc !important;
color: #666666 !important;
cursor: not-allowed !important;
opacity: 0.6 !important;
pointer-events: none !important;
box-shadow: none !important;
}
jQuery(function ($) {
$('form[id^="gform_"]').on('change', function (e) {
var $reqd = $(this).find('.gfield_contains_required.gfield_visibility_visible').filter(function (i, c) {
return []
.concat($(c).find('input[type="text"], textarea').filter(function (i, fl) { return $(fl).val().length == 0; }).get())
.concat($(c).find('input[type="checkbox"]').not(':checked').get())
.length;
});
if ($reqd.length) {
$(this).find('input[type="submit"]').addClass('disabled button-disabled').attr('disabled', 'disabled');
} else {
$(this).find('input[type="submit"]').removeClass('disabled button-disabled').removeAttr('disabled');
}
}).trigger('change');
});