`); let searchResultsWrapper = document.getElementById("search-results-wrapper-39140"); let searchResults = document.getElementById("search-results-39140"); let searchResultsClose = document.getElementById("search-results-close-39140"); searchResultsWrapper.addEventListener("click", function(e) { if(e.target === searchInput) return; if(e.target === searchResultsClose) return; if(searchResultsClose.contains(e.target)) return; if(e.target === searchResults) return; if(searchResults.contains(e.target)) return; closeSearch(); }); function closeSearch() { document.body.classList.remove("search-open-39140"); if(searchInput.value.trim() === "") { window.setTimeout(function() { searchResults.innerHTML = ""; }, 250); } } searchResultsClose.addEventListener("click", closeSearch); function showSearch() { document.body.classList.add("search-open-39140"); let top = searchInput.getBoundingClientRect().bottom; // searchResults.style.top = "calc(" + top + "px + 1rem)"; } function doSearch(term) { if(term.trim() === "") { closeSearch(); return; } const query = term.trim(); const currentUrl = new URL(window.location); currentUrl.searchParams.set('q', query); window.history.replaceState(null, null, currentUrl.toString()); showSearch(); let fd = new FormData(); fd.append("search2", ""); fd.append("term", term); $.ajax({ method: "POST", data: fd, contentType: false, processData: false, success: function(data) { searchResults.innerHTML = ""; let searchTermDiv = document.createElement("div"); searchResults.appendChild(searchTermDiv); searchTermDiv.className = "text-center py-3 bg-light sticky-top"; if(data.numResults == 0) { searchTermDiv.innerText = "No search results"; } else if(data.numResults == 1) { searchTermDiv.innerText = "search result"; } else { searchTermDiv.innerText = data.numResults.toLocaleString() + " " + "search results"; } searchTermDiv.innerText += " " + "for" + " "; let searchTermSpan = document.createElement("span"); searchTermDiv.appendChild(searchTermSpan); searchTermSpan.className = "font-weight-bold"; searchTermSpan.innerText = term; let bigRowDiv = document.createElement("div"); searchResults.appendChild(bigRowDiv); bigRowDiv.className = "row no-gutters justify-content-center"; let resultProducts = []; let resultOther = []; for(let result of data.results) { if(result.pageType === "product") { resultProducts.push(result); } else { resultOther.push(result); } } if(resultOther.length) { let bigCol1Div = document.createElement("div"); bigRowDiv.appendChild(bigCol1Div); bigCol1Div.className = "col-12 col-lg-2 pr-lg-2 pt-lg-1"; for(let result of resultOther) { let resultDiv = document.createElement("div"); bigCol1Div.appendChild(resultDiv); resultDiv.className = "position-relative rounded p-3 mb-2 search-result"; let title = document.createElement("div"); resultDiv.appendChild(title); title.innerText = result.title title.className = "search-result-title"; title.title = result.title; if(result.pageType === "category") { let badge = document.createElement("span"); title.appendChild(badge); badge.className = "text-secondary ml-2 small font-weight-bold"; badge.innerText = "Category"; } else if(result.pageType === "blog") { let badge = document.createElement("span"); title.appendChild(badge); badge.className = "text-secondary ml-2 small font-weight-bold"; badge.innerText = "Blog"; } let anchor = document.createElement("a"); resultDiv.appendChild(anchor); anchor.href = result.url; anchor.className = "stretched-link"; } } if(resultProducts.length) { let bigCol2Div = document.createElement("div"); bigRowDiv.appendChild(bigCol2Div); bigCol2Div.className = "col pl-lg-4"; let rowDiv = document.createElement("div"); bigCol2Div.appendChild(rowDiv); rowDiv.className = "row no-gutters justify-content-center mx-n1 mx-lg-0"; for(let result of resultProducts) { let colDiv = document.createElement("div"); rowDiv.appendChild(colDiv); colDiv.className = "col-6 col-lg-3 col-xl-2 p-1"; let resultDiv = document.createElement("div"); colDiv.appendChild(resultDiv); resultDiv.className = "search-result position-relative h-100 p-3 rounded"; resultDiv.title = result.title; let img = document.createElement("img"); resultDiv.appendChild(img); if(typeof result.imageUrl !== "undefined") { img.src = result.imageUrl; } let anchor = document.createElement("a"); resultDiv.appendChild(anchor); anchor.href = result.url; anchor.className = "stretched-link"; let title = document.createElement("div"); resultDiv.appendChild(title); title.innerText = result.title title.className = "search-result-title text-center mt-2"; title.title = result.title; let bottomRow = document.createElement("div"); resultDiv.append(bottomRow); bottomRow.className = "row no-gutters mt-2"; let priceDiv = document.createElement("div"); bottomRow.appendChild(priceDiv); priceDiv.className = "col my-auto text-center h6 font-weight-bold text-primary text-nowrap"; if(result.price <= 0) { priceDiv.innerHTML = "Quotation"; } else { priceDiv.innerHTML = "€"; priceDiv.innerText += result.price.toLocaleString(undefined, { minimumFractionDigits: 2, maximumFractionDigits: 2, }); let cartDiv = document.createElement("div"); bottomRow.appendChild(cartDiv); cartDiv.className = "col-auto"; cartDiv.insertAdjacentHTML("beforeend", `
`); } } } setCmsEvent("event", "search", { "developer_id.dMzIyNT": true, search_term: term, search_count: data.numResults }); }, error: function(error) { console.log("Search failed; error:"); console.log(error); } }); } searchInput.addEventListener("input", function() { updateSearchInputClear(); if(callback) window.clearTimeout(callback); let inputCallback = function() { doSearch(searchInput.value); } callback = window.setTimeout(inputCallback, 250); }); });
support_agent
menu
`); let searchResultsWrapper = document.getElementById("search-results-wrapper-21747"); let searchResults = document.getElementById("search-results-21747"); let searchResultsClose = document.getElementById("search-results-close-21747"); searchResultsWrapper.addEventListener("click", function(e) { if(e.target === searchInput) return; if(e.target === searchResultsClose) return; if(searchResultsClose.contains(e.target)) return; if(e.target === searchResults) return; if(searchResults.contains(e.target)) return; closeSearch(); }); function closeSearch() { document.body.classList.remove("search-open-21747"); if(searchInput.value.trim() === "") { window.setTimeout(function() { searchResults.innerHTML = ""; }, 250); } } searchResultsClose.addEventListener("click", closeSearch); function showSearch() { document.body.classList.add("search-open-21747"); let top = searchInput.getBoundingClientRect().bottom; // searchResults.style.top = "calc(" + top + "px + 1rem)"; } function doSearch(term) { if(term.trim() === "") { closeSearch(); return; } const query = term.trim(); const currentUrl = new URL(window.location); currentUrl.searchParams.set('q', query); window.history.replaceState(null, null, currentUrl.toString()); showSearch(); let fd = new FormData(); fd.append("search2", ""); fd.append("term", term); $.ajax({ method: "POST", data: fd, contentType: false, processData: false, success: function(data) { searchResults.innerHTML = ""; let searchTermDiv = document.createElement("div"); searchResults.appendChild(searchTermDiv); searchTermDiv.className = "text-center py-3 bg-light sticky-top"; if(data.numResults == 0) { searchTermDiv.innerText = "No search results"; } else if(data.numResults == 1) { searchTermDiv.innerText = "search result"; } else { searchTermDiv.innerText = data.numResults.toLocaleString() + " " + "search results"; } searchTermDiv.innerText += " " + "for" + " "; let searchTermSpan = document.createElement("span"); searchTermDiv.appendChild(searchTermSpan); searchTermSpan.className = "font-weight-bold"; searchTermSpan.innerText = term; let bigRowDiv = document.createElement("div"); searchResults.appendChild(bigRowDiv); bigRowDiv.className = "row no-gutters justify-content-center"; let resultProducts = []; let resultOther = []; for(let result of data.results) { if(result.pageType === "product") { resultProducts.push(result); } else { resultOther.push(result); } } if(resultOther.length) { let bigCol1Div = document.createElement("div"); bigRowDiv.appendChild(bigCol1Div); bigCol1Div.className = "col-12 col-lg-2 pr-lg-2 pt-lg-1"; for(let result of resultOther) { let resultDiv = document.createElement("div"); bigCol1Div.appendChild(resultDiv); resultDiv.className = "position-relative rounded p-3 mb-2 search-result"; let title = document.createElement("div"); resultDiv.appendChild(title); title.innerText = result.title title.className = "search-result-title"; title.title = result.title; if(result.pageType === "category") { let badge = document.createElement("span"); title.appendChild(badge); badge.className = "text-secondary ml-2 small font-weight-bold"; badge.innerText = "Category"; } else if(result.pageType === "blog") { let badge = document.createElement("span"); title.appendChild(badge); badge.className = "text-secondary ml-2 small font-weight-bold"; badge.innerText = "Blog"; } let anchor = document.createElement("a"); resultDiv.appendChild(anchor); anchor.href = result.url; anchor.className = "stretched-link"; } } if(resultProducts.length) { let bigCol2Div = document.createElement("div"); bigRowDiv.appendChild(bigCol2Div); bigCol2Div.className = "col pl-lg-4"; let rowDiv = document.createElement("div"); bigCol2Div.appendChild(rowDiv); rowDiv.className = "row no-gutters justify-content-center mx-n1 mx-lg-0"; for(let result of resultProducts) { let colDiv = document.createElement("div"); rowDiv.appendChild(colDiv); colDiv.className = "col-6 col-lg-3 col-xl-2 p-1"; let resultDiv = document.createElement("div"); colDiv.appendChild(resultDiv); resultDiv.className = "search-result position-relative h-100 p-3 rounded"; resultDiv.title = result.title; let img = document.createElement("img"); resultDiv.appendChild(img); if(typeof result.imageUrl !== "undefined") { img.src = result.imageUrl; } let anchor = document.createElement("a"); resultDiv.appendChild(anchor); anchor.href = result.url; anchor.className = "stretched-link"; let title = document.createElement("div"); resultDiv.appendChild(title); title.innerText = result.title title.className = "search-result-title text-center mt-2"; title.title = result.title; let bottomRow = document.createElement("div"); resultDiv.append(bottomRow); bottomRow.className = "row no-gutters mt-2"; let priceDiv = document.createElement("div"); bottomRow.appendChild(priceDiv); priceDiv.className = "col my-auto text-center h6 font-weight-bold text-primary text-nowrap"; if(result.price <= 0) { priceDiv.innerHTML = "Quotation"; } else { priceDiv.innerHTML = "€"; priceDiv.innerText += result.price.toLocaleString(undefined, { minimumFractionDigits: 2, maximumFractionDigits: 2, }); let cartDiv = document.createElement("div"); bottomRow.appendChild(cartDiv); cartDiv.className = "col-auto"; cartDiv.insertAdjacentHTML("beforeend", `
`); } } } setCmsEvent("event", "search", { "developer_id.dMzIyNT": true, search_term: term, search_count: data.numResults }); }, error: function(error) { console.log("Search failed; error:"); console.log(error); } }); } searchInput.addEventListener("input", function() { updateSearchInputClear(); if(callback) window.clearTimeout(callback); let inputCallback = function() { doSearch(searchInput.value); } callback = window.setTimeout(inputCallback, 250); }); });
Nederlands Deutsch Français Italiano
person Log in
menu
`); let searchResultsWrapper = document.getElementById("search-results-wrapper-37815"); let searchResults = document.getElementById("search-results-37815"); let searchResultsClose = document.getElementById("search-results-close-37815"); searchResultsWrapper.addEventListener("click", function(e) { if(e.target === searchInput) return; if(e.target === searchResultsClose) return; if(searchResultsClose.contains(e.target)) return; if(e.target === searchResults) return; if(searchResults.contains(e.target)) return; closeSearch(); }); function closeSearch() { document.body.classList.remove("search-open-37815"); if(searchInput.value.trim() === "") { window.setTimeout(function() { searchResults.innerHTML = ""; }, 250); } } searchResultsClose.addEventListener("click", closeSearch); function showSearch() { document.body.classList.add("search-open-37815"); let top = searchInput.getBoundingClientRect().bottom; // searchResults.style.top = "calc(" + top + "px + 1rem)"; } function doSearch(term) { if(term.trim() === "") { closeSearch(); return; } const query = term.trim(); const currentUrl = new URL(window.location); currentUrl.searchParams.set('q', query); window.history.replaceState(null, null, currentUrl.toString()); showSearch(); let fd = new FormData(); fd.append("search2", ""); fd.append("term", term); $.ajax({ method: "POST", data: fd, contentType: false, processData: false, success: function(data) { searchResults.innerHTML = ""; let searchTermDiv = document.createElement("div"); searchResults.appendChild(searchTermDiv); searchTermDiv.className = "text-center py-3 bg-light sticky-top"; if(data.numResults == 0) { searchTermDiv.innerText = "No search results"; } else if(data.numResults == 1) { searchTermDiv.innerText = "search result"; } else { searchTermDiv.innerText = data.numResults.toLocaleString() + " " + "search results"; } searchTermDiv.innerText += " " + "for" + " "; let searchTermSpan = document.createElement("span"); searchTermDiv.appendChild(searchTermSpan); searchTermSpan.className = "font-weight-bold"; searchTermSpan.innerText = term; let bigRowDiv = document.createElement("div"); searchResults.appendChild(bigRowDiv); bigRowDiv.className = "row no-gutters justify-content-center"; let resultProducts = []; let resultOther = []; for(let result of data.results) { if(result.pageType === "product") { resultProducts.push(result); } else { resultOther.push(result); } } if(resultOther.length) { let bigCol1Div = document.createElement("div"); bigRowDiv.appendChild(bigCol1Div); bigCol1Div.className = "col-12 col-lg-2 pr-lg-2 pt-lg-1"; for(let result of resultOther) { let resultDiv = document.createElement("div"); bigCol1Div.appendChild(resultDiv); resultDiv.className = "position-relative rounded p-3 mb-2 search-result"; let title = document.createElement("div"); resultDiv.appendChild(title); title.innerText = result.title title.className = "search-result-title"; title.title = result.title; if(result.pageType === "category") { let badge = document.createElement("span"); title.appendChild(badge); badge.className = "text-secondary ml-2 small font-weight-bold"; badge.innerText = "Category"; } else if(result.pageType === "blog") { let badge = document.createElement("span"); title.appendChild(badge); badge.className = "text-secondary ml-2 small font-weight-bold"; badge.innerText = "Blog"; } let anchor = document.createElement("a"); resultDiv.appendChild(anchor); anchor.href = result.url; anchor.className = "stretched-link"; } } if(resultProducts.length) { let bigCol2Div = document.createElement("div"); bigRowDiv.appendChild(bigCol2Div); bigCol2Div.className = "col pl-lg-4"; let rowDiv = document.createElement("div"); bigCol2Div.appendChild(rowDiv); rowDiv.className = "row no-gutters justify-content-center mx-n1 mx-lg-0"; for(let result of resultProducts) { let colDiv = document.createElement("div"); rowDiv.appendChild(colDiv); colDiv.className = "col-6 col-lg-3 col-xl-2 p-1"; let resultDiv = document.createElement("div"); colDiv.appendChild(resultDiv); resultDiv.className = "search-result position-relative h-100 p-3 rounded"; resultDiv.title = result.title; let img = document.createElement("img"); resultDiv.appendChild(img); if(typeof result.imageUrl !== "undefined") { img.src = result.imageUrl; } let anchor = document.createElement("a"); resultDiv.appendChild(anchor); anchor.href = result.url; anchor.className = "stretched-link"; let title = document.createElement("div"); resultDiv.appendChild(title); title.innerText = result.title title.className = "search-result-title text-center mt-2"; title.title = result.title; let bottomRow = document.createElement("div"); resultDiv.append(bottomRow); bottomRow.className = "row no-gutters mt-2"; let priceDiv = document.createElement("div"); bottomRow.appendChild(priceDiv); priceDiv.className = "col my-auto text-center h6 font-weight-bold text-primary text-nowrap"; if(result.price <= 0) { priceDiv.innerHTML = "Quotation"; } else { priceDiv.innerHTML = "€"; priceDiv.innerText += result.price.toLocaleString(undefined, { minimumFractionDigits: 2, maximumFractionDigits: 2, }); let cartDiv = document.createElement("div"); bottomRow.appendChild(cartDiv); cartDiv.className = "col-auto"; cartDiv.insertAdjacentHTML("beforeend", `
`); } } } setCmsEvent("event", "search", { "developer_id.dMzIyNT": true, search_term: term, search_count: data.numResults }); }, error: function(error) { console.log("Search failed; error:"); console.log(error); } }); } searchInput.addEventListener("input", function() { updateSearchInputClear(); if(callback) window.clearTimeout(callback); let inputCallback = function() { doSearch(searchInput.value); } callback = window.setTimeout(inputCallback, 250); }); });
Nederlands Deutsch Français Italiano
person Log in
close
home navigate_next FKM - FPM - Viton O-Rings navigate_next navigate_next
home navigate_next FKM - FPM - Viton O-Rings navigate_next navigate_next
ID (Inner diameter) 480 mm
CS (Cross Section) 6 mm
Material FKM - FPM - Viton
Hardness 75 Shore A
Color Brown
Item no. 226866
Approval Conform FDA & EC1935/2004
Color Brown
Stock 79 sentiment_satisfied_alt
Need a coating on this O-Ring? Request a quotation here keyboard_arrow_down All specifications
What are the shipment terms to my country?
Country | Price | Transit days | Carrier |
Algeria | € 175,00 | 7 - 10 | FedEx: International Economy |
Argentina | € 63,00 | 8 - 10 | FedEx: International Economy |
Australia | € 45,00 | 8 - 10 | FedEx: International Priority |
Austria | € 15,00 | 4 - 6 | GLS: Euro Business Parcel |
Belgium | € 10,00 | 1 - 3 | GLS: Euro Business Parcel |
Bosnia and Herzegovina | € 43,00 | 4 - 6 | FedEx: International Priority |
Brazil | € 55,00 | 4 - 6 | FedEx: International Priority |
Bulgaria | € 22,50 | 6 - 8 | FedEx: International Economy |
Canada | € 45,00 | 2 - 4 | FedEx: International Priority |
China | € 38,00 | 2 - 4 | FedEx: International Economy |
Croatia | € 30,00 | 7 - 10 | FedEx: International Economy |
Cyprus | € 28,00 | 3 - 5 | GLS: Euro Business Parcel |
Czech Republic | € 20,00 | 3 - 5 | FedEx: International Priority |
Denmark | € 13,00 | 2 - 4 | GLS: Euro Business Parcel |
Egypt | € 175,00 | 7 - 10 | FedEx: Regional Economy |
Estonia | € 20,00 | 4 - 6 | FedEx: Regional Economy |
Finland | € 20,00 | 5 - 7 | FedEx: Regional Economy |
France | € 10,00 | 2 - 4 | GLS: Euro Business Parcel |
French Polynesia | € 70,00 | 6 - 8 | FedEx: International Priority |
Germany | € 10,00 | 1 - 3 | GLS: Euro Business Parcel |
Ghana | € 70,00 | 7 - 10 | FedEx: Regional Economy |
Greece | € 25,00 | 4 - 6 | FedEx: Regional Economy |
Hungary | € 23,00 | 1 - 3 | FedEx: Regional Economy |
Iceland | € 43,00 | 7 - 10 | FedEx: International Priority |
India | € 190,00 | 5 - 7 | FedEx: International Priority |
Indonesia | € 45,00 | 5 - 7 | FedEx: International Priority |
Ireland | € 18,00 | 3 - 5 | FedEx: Regional Economy |
Israel | € 70,00 | 3 - 7 | FedEx: International Economy |
Italy | € 20,00 | 1 - 3 | FedEx: International Priority |
Japan | € 40,00 | 4 - 6 | FedEx: International Economy |
Korea, Democratic People's Republic of | € 40,00 | 4 - 6 | FedEx: International Economy |
Korea, Republic of | € 40,00 | 4 - 6 | FedEx: International Economy |
Kurwait | € 40,00 | 7 - 10 | FedEx: International Economy |
Latvia | € 28,00 | 4 - 6 | GLS: Euro Business Parcel |
Lithuania | € 38,00 | 4 - 6 | GLS: Euro Business Parcel |
Luxembourg | € 13,00 | 1 - 3 | GLS: Euro Business Parcel |
Macedonia | € 40,00 | 7 - 10 | FedEx: International Economy |
Malaysia | € 40,00 | 5 - 7 | FedEx: International Economy |
Malta | € 30,00 | 4 - 6 | GLS: Euro Business Parcel |
Mexico | € 63,00 | 5 - 7 | FedEx: International Economy |
Monaco | € 23,00 | 3 - 5 | FedEx: International Priority |
Netherlands | € 10,00 | 1 - 3 | GLS: Euro Business Parcel |
New Zealand | € 52,50 | 7 - 10 | FedEx: International Priority |
Norway | € 38,00 | 2 - 4 | FedEx: International Priority |
Oman | € 40,00 | 7 - 10 | FedEx: International Eoonomy |
Peru | € 53,00 | 4 - 8 | FedEx: International Economy |
Philippines | € 45,00 | 4 - 8 | FedEx: International Economy |
Poland | € 28,00 | 3 - 5 | GLS: Euro Business Parcel |
Portugal | € 23.00 | 4 - 6 | FedEx: Regional Economy |
Romania | € 28,00 | 4 - 6 | FedEx: International Economy |
Saudi Arabia | € 45,00 | 4 - 6 | FedEx: International Economy |
Serbia and Montenegro | € 43,00 | 2 - 4 | FedEx: International Economy |
Singapore | € 45.00 | 4 - 6 | FedEx: International Economy |
Slovakia | € 23,00 | 4 - 6 | FedEx: Regional Economy |
Slovenia | € 23,00 | 4 - 6 | FedEx: Regional Economy |
Spain | € 18,00 | 5 - 7 | FedEx: Regional Economy |
Sweden | € 23,00 | 2 - 4 | FedEx: Regional Economy |
Switzerland | € 38,00 | 2 - 4 | FedEx: International Economy |
Taiwan | € 38,00 | 5 - 7 | FedEx: International Economy |
Turkey | € 38,00 | 2 - 4 | FedEx: International Priority |
United Arab Emirates | € 200,00 | 2 - 4 | FedEx: International Priority |
United Kingdom | € 20,00 | 2 - 4 | FedEx: Regional Economy |
United States | € 40,00 | 2 - 4 | FedEx: International Priority |
Vietnam | € 45,00 | 5 - 7 | FedEx: International Economy |
Stock | Delivery time |
---|---|
79 | Shipped in 5 - 7 - Day(s) |
€62,48 Ex. VAT / per piece
€75,60 In. VAT
Price per piece
Shipped in 5 - 7 - Day(s)
This product has a minimum order Qty of 1pcs
Quantity | Per piece |
---|---|
1+ | €62,4793 |
3+ | €62,4808 |
5+ | €57,9820 |
10+ | €51,7364 |
25+ | €48,9844 |
In stock | Yes, 79 pcs |
Article number | 226866 |
Dimensions | 480x6 |
Material | FKM - FPM - Viton |
Seal type | O-ring |
Alternative Size | |
DIN 3771 Size Chart Explanation | 480 x 6 |
Core Spec's | |
Approval | Conform FDA & EC1935/2004 |
Color | Brown |
CS (Cross Section) Explanation | 6 mm |
Hardness Explanation | 75 Shore A |
ID (Inner diameter) Explanation | 480 mm |
Temperature Max | 200 ºC |
Temperature Min | -15 ºC |
echnical Spec's | |
Compression Set | 12 % |
Engels: Technical Specifications | |
Specific Gravity | 2,15 g/cm3 |
Other Specs | |
Chemical Name | Fluorocarbon Rubber |
Trade names | Viton® - FKM |
Technical Specifications | |
Tensile Strength | 11,1 MPa |
Ultimate Elongation | 179 % |
download Download/print specifications PDF
Description
This FKM - FPM - Viton O-Ring is 480 x 6mm and in the color Brown. The Hardness of this O-ring 480x6 - FKM - FPM - Viton - Conform FDA & EC1935/2004 - 75 Shore A - Brown - ORS226866 is 75 Shore A.The alternative names of the compound are and they are mostly produced by Viton® - FKM. The O-ring is commonly used in and has an operating temperature range from -15 ºC to 200 ºC. O-rings 6600089 are indicated as 226866 and have a DIN 3771 Size of 480 x 6. This item is equal to and has an Conform FDA & EC1935/2004 Approval. The chemical name of this Oring is Fluorocarbon Rubber.
Get a quote now
All items marked with a * are required.
This product has a minimum order Qty of 1pcs
This website uses cookies
We use cookies to improve user experience and display personalized advertisem*nts. Choose what cookies you allow us to use. You can read more about our Cookie Policy in our Privacy policy. Click here.
This website uses cookies
We use cookies to improve user experience and display personalized advertisem*nts. Choose what cookies you allow us to use. You can read more about our Cookie Policy in our Privacy policy. Click here.
Strictly necessary
Strictly necessary cookies allow core website functionality such as user login and account management. The website cannot be used properly without strictly necessary cookies.
Show cookies keyboard_arrow_down
Name | Provider / Domain | Expiration | Description |
---|---|---|---|
cookiebar.accept | Accept the cookie bar. local | 5 year | Accept the cookie bar. |
cookiebar.settings | Settings from the cookie bar. local | 5 year | Settings from the cookie bar. |
PHPSESSID | PHP.net | Sessions | Cookie generated by applications based on the PHP language. This is a general purpose identifier used to maintain user session variables. It is normally a random generated number, how it is used can be specific to the site, but a good example is maintaining a logged-in status for a user between pages. |
Performance
Performance cookies are used to see how visitors use the website, eg. analytics cookies. Those cookies cannot be used to directly identify a certain visitor.
Show cookies keyboard_arrow_down
Name | Provider / Domain | Expiration | Description |
---|---|---|---|
vistrk | Serverside tracking-system. local | 30 days | Serverside tracking-system. |
_ga | Google google-analytics.com (3rd party) or | 2 years | ID used to identify users |
_gat* | Google google-analytics.com (3rd party) or | 1 minute | Used to monitor number of Google Analytics server requests when using Google Tag Manager |
_ga_* | Google google-analytics.com (3rd party) or | 2 years | ID used to identify users |
_gid | Google google-analytics.com (3rd party) or | 24 hours | ID used to identify users for 24 hours after last activity |
Targeting
Targeting cookies are used to identify visitors between different websites, eg. content partners, banner networks. Those cookies may be used by companies to build a profile of visitor interests or show relevant ads on other websites.
Show cookies keyboard_arrow_down
Name | Provider / Domain | Expiration | Description |
---|---|---|---|
_gcl_au | Google | 3 months | Used by Google AdSense for experimenting with advertisem*nt efficiency across websites using their services. |
Functionality
Functionality cookies are used to remember visitor information on the website, eg. language, timezone, enhanced content.
Show cookies keyboard_arrow_down
Name | Provider / Domain | Expiration | Description |
---|---|---|---|
TawkConnectionTime | Tawk.to Chat | session | This cookie is used to determine the connection duration of tawk sessions. |
_hjAbsoluteSessionInProgress | Hotjar | 30 minutes | The cookie is set so Hotjar can track the beginning of the user's journey for a total session count. It does not contain any identifiable information. |
_hjFirstSeen | Hotjar | 30 minutes | The cookie is set so Hotjar can track the beginning of the user's journey for a total session count. It does not contain any identifiable information. |
_hjIncludedInSessionSample* | Hotjar | 30 minutes | This cookie is set to let Hotjar know whether that visitor is included in the data sampling defined by your site's daily session limit |
_hjIncludedInSessionSample* | Hotjar | 30 minutes | This cookie is set to let Hotjar know whether that visitor is included in the data sampling defined by your site's daily session limit |
_hjSession_* | Hotjar | 30 minutes | A cookie that holds the current session data. This ensues that subsequent requests within the session window will be attributed to the same Hotjar session. |
_hjSession_* | Hotjar | 30 minutes | A cookie that holds the current session data. This ensues that subsequent requests within the session window will be attributed to the same Hotjar session. |
_hjSession_* | Hotjar | 30 minutes | A cookie that holds the current session data. This ensues that subsequent requests within the session window will be attributed to the same Hotjar session. |
_hjSession_* | Hotjar | 30 minutes | A cookie that holds the current session data. This ensues that subsequent requests within the session window will be attributed to the same Hotjar session. |
Unclassified
Unclassified cookies are cookies that do not belong to any other category or are in the process of categorization.
Show cookies keyboard_arrow_down
Cookies are small text files that are placed on your computer by websites that you visit. Websites use cookies to help users navigate efficiently and perform certain functions. Cookies that are required for the website to operate properly are allowed to be set without your permission. All other cookies need to be approved before they can be set in the browser.
You can change your consent to cookie usage at any time on our Privacy Policy page. Click here