Suitable for glazing, aluminium, construction of signs and for sanitary ware, bathrooms, kitchens since it prevents the development of unsightly black spots.
Strong welding and effective sealing.
It doesn't blacken, it doesn't turn yellow.
UV resistance. Retention of properties from -400C to 1000C.
It fills the gaps and always remains elastic.
In transparent and white shade for every need.
Precautions
Avoid product contact with skin and eyes.
If it comes into contact with the eyes, rinse with water for 15 minutes and consult a doctor.
Do not use for sealing aquariums due to the fungicide it contains
Specifications:
Strong construction structural glue Logo Silic Professional in paste form (does not run)
Sticks very tightly to a large number of materials
It has great elasticity and can withstand up to 40% expansion - contraction without "popping".
Very resistant to the sun's ultraviolet rays, moisture, bacteria.
It can be painted with any paint
').addClass('shipping-title')
.append($('').addClass('shipping-price-title').text('Shipping:'))
.append($('').addClass('shipping-loading'));
$('#open-estimate-shipping-popup-345').html(shippingTitle);
}
},
success: function (address, response) {
// initialize on load only once
var option = popUp.getActiveShippingOption();
popUp.selectShippingOption(option);
initialized = true;
popUp.settings.handlers.success = undefined;
},
error: function () {
popUp.selectShippingOption();
},
selectedOption: function (option) {
if (option && option.provider && option.price && popUp.validateAddress(option.address)) {
var shippingContent = $('#open-estimate-shipping-popup-345');
var shippingTitle = $('
').addClass('shipping-title')
.append($('').addClass('shipping-price-title').text('Shipping:'))
.append($('').addClass('shipping-price').text(option.price));
shippingContent.html(shippingTitle);
var estimatedDelivery = $('').addClass('estimated-delivery')
.append($('').addClass('shipping-address')
.append($('').text(`to ${option.address.countryName}, ${(option.address.stateProvinceName ? option.address.stateProvinceName + ',' : '')} ${option.address.zipPostalCode} via ${option.provider}`))
.append($('').addClass('arrow-down')));
if (option.deliveryDate && option.deliveryDate !== '-')
estimatedDelivery.append($('').addClass('shipping-date').text(`Estimated Delivery on ${option.deliveryDate}`));
shippingContent.append(estimatedDelivery);
} else {
$('#open-estimate-shipping-popup-345')
.html($('').text('Please select the address you want to ship from'))
.append($('').addClass('arrow-down'));
}
}
}
};
popUp = createEstimateShippingPopUp(settings);
popUp.init();
var initialLoad = function () {
var address = popUp.getShippingAddress();
if (popUp.validateAddress(address))
popUp.getShippingOptions(address);
else
popUp.selectShippingOption();
};
initialLoad();
var attributeChangedHandler = function (e) {
var productId = e.changedData.productId;
if (productId === 345) {
if (popUp.params.selectedShippingOption) {
var address = popUp.params.selectedShippingOption.address;
var enteredAddress = popUp.getShippingAddress();
if (!popUp.addressesAreEqual(address, enteredAddress))
reloadPopUp = true;
popUp.getShippingOptions(address);
} else {
if (!initialized)
initialLoad();
else
reloadPopUp = true;
}
}
};
// Prevent double init on load. If product has attributes then trigger is fires when page is loaded and attributes are loaded.
setTimeout(function () {
$(document).on('product_attributes_changed', attributeChangedHandler);
}, 500);
$(document).on('product_quantity_changed', attributeChangedHandler);
});