
Share on:
Flexi Hose with 8 Function Nozzle Expandable Garden Hose 50 ft, Lightweight & No-Kink Flexible Extendable Garden Flex Hose, 3/4 inch Solid Brass Fittings and Double Latex Core, 50ft BlackFound a lower price? Let us know. Although we can't match every price reported, we'll use your feedback to ensure that our prices remain competitive. Store (Offline) Store name: City: State: Please select province Please select province Price: ($) Date of the price: 01 02 03 04 05 06 07 08 09 10 11 12 / 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 / Please sign in to provide feedback. Submit Feedback P.when("A", "a-modal", "ready").execute(function (A, modal) { var $ = A.$; var instance; var title = $("#modalHeader").val(); A.declarative("pricingFeedback-modal-button", "click", function (event) { if (!instance) { var options = { name: "pricingFeedback-modal-content", dataStrategy: "preload", }; instance = modal.create(event.$target, options); } instance.update({ "header": title, "width": "550" }).lock().show(); }); }); P.when('A', 'ready').execute(function (A) { var $ = A.$; var csrf = $("#aapiCsrfToken").val(); var productPrice = $("#priceValue").val(); var hostname = $("#absoluteUrlPrefix").val(); var customerId = $("#customerId").val(); var isCustomerRecognized = ($("#isCustomerLoggedIn").val() === 'true'); var isCurrentGlOnlineOnly = ($("#isCurrentGlOnlineOnly").val() === 'true'); var asin = $("#asin").val(); var marketplaceId = $("#marketplaceId").val(); var country = $("#countryCode").val(); var offlineStoresList = $("#offlineStoresList").val(); var statesList = $("#statesList").val(); var errorMessages = { errorNoRetailerType: $("#errorNoType").val(), errorBadPrice: $("#errorBadPrice").val(), errorBadPriceShipping: $("#errorBadPriceShipping").val(), errorInvalidUrl: $("#errorInvalidUrl").val(), errorSubmission: $("#errorSubmission").val(), errorEmptyFields: $("#errorEmptyFields").val(), thankFeedback: $("#thankFeedback").val() }; var feedbackFormContent = document.querySelector('#feedbackForm'); var signUpContainer = document.querySelector('#signUpForm'); var feedbackFormFinalStateContainer = document.querySelector('#feedbackFormFinalState'); var states = JSON.parse(statesList); var offlineStores = JSON.parse(offlineStoresList); var offlineStoresEnabled = !isCurrentGlOnlineOnly; var currentDate = getCurrentDay(); var currentMonth = getCurrentMonth(); var currentYear = getCurrentYear(); if (isCustomerRecognized) { feedbackFormContent.style['display'] = 'block'; feedbackFormFinalStateContainer.style['display'] = 'block'; signUpContainer.style['display'] = 'none'; var enableOnlineStoreRadio = document.querySelector('#pricingFeedback_onlineRadio'); var enableOfflineStoreRadio = document.querySelector('#pricingFeedback_offlineRadio'); var onlineStoreInputForm = document.querySelector('#pricingFeedback_onlineInput'); var offlineStoreInputForm = document.querySelector('#pricingFeedback_offlineInput'); var offlineStateSelect = document.querySelector('#offlineState'); var offlineStoreSelect = document.querySelector('#offlineStoreNameList'); var submitButton = document.querySelector('#pricingFeedback_submit'); var onlineUrl = document.querySelector('#onlineUrl'); var onlinePriceRaw = document.querySelector('#onlinePriceRaw'); var onlineShippingRaw = document.querySelector('#onlineShippingRaw'); var onlineDay = document.querySelector('#onlineDay'); var onlineMonth = document.querySelector('#onlineMonth'); var onlineYear = document.querySelector('#onlineYear'); var onlineCalendar = document.querySelector('#onlineCalendar'); var offlineRadioContainer = document.querySelector('#offlineRadioContainer'); var offlineStoreName = document.querySelector('#offlineStoreName'); var offlineCity = document.querySelector('#offlineCity'); var offlineState = document.querySelector('#offlineState'); var offlinePriceRaw = document.querySelector('#offlinePriceRaw'); var offlineDay = document.querySelector('#offlineDay'); var offlineMonth = document.querySelector('#offlineMonth'); var offlineYear = document.querySelector('#offlineYear'); var offlineCalendar = document.querySelector('#offlineCalendar'); var thankYouDiv = document.querySelector('#pricingFeedback_thank'); var errorDiv = document.querySelector('#pricingFeedback_error'); var loadingGifDiv = document.querySelector('#loading'); setCalenderOrderBasedOnCountry(country); setInitialStates( onlineMonth, currentMonth, offlineMonth, onlineDay, currentDate, offlineDay, onlineYear, currentYear, offlineYear, onlineStoreInputForm, offlineStoreInputForm, enableOfflineStoreRadio, enableOnlineStoreRadio, onlineCalendar, offlineCalendar ); createPermalinkContainer(asin, hostname); for (let state of states) { var option = document.createElement('option'); option.setAttribute('value', state['value']); option.innerText = state['name']; offlineStateSelect.appendChild(option); } for (let store of offlineStores) { var option = document.createElement('option'); option.setAttribute('value', store); offlineStoreSelect.appendChild(option); } $("#pricingFeedback_onlineRadio").click(function () { onlineStoreInputForm.style['display'] = 'table'; offlineStoreInputForm.style['display'] = 'none'; }); $("#pricingFeedback_offlineRadio").click(function () { onlineStoreInputForm.style['display'] = 'none'; offlineStoreInputForm.style['display'] = 'table'; }); if (!offlineStoresEnabled) { offlineRadioContainer.style['display'] = 'none'; offlineStoreInputForm.style['display'] = 'none'; } $("#pricingFeedback_submit").click(function () { var feedbackSubmitted = submitFeedback( customerId, marketplaceId, asin, productPrice, onlineStoreInputForm, offlineStoreInputForm, onlineUrl.value, onlinePriceRaw.value, onlineShippingRaw.value, onlineDay.value, onlineMonth.value, offlineStoreName.value, offlineCity.value, offlineState.value, offlinePriceRaw.value, offlineDay.value, offlineMonth.value, thankYouDiv, errorDiv, submitButton, loadingGifDiv, errorMessages ); if (feedbackSubmitted !== null && !feedbackSubmitted) { errorDiv.innerHTML = getErrorDiv(errorMessages.errorSubmission); } }); A.on("a:popover:beforeHide:pricingFeedback-modal-content", function (data) { resetModalToInitialState(currentMonth, currentDate, currentYear); }); } else { feedbackFormContent.style['display'] = 'none'; feedbackFormFinalStateContainer.style['display'] = 'none'; signUpContainer.style['display'] = 'block'; var authPortalLink = getAuthenticationPageURL(asin, hostname); $("#signUpForm").one("click", function () { window.location = encodeURI(authPortalLink); }); } function setCalenderOrderBasedOnCountry(country) { var monthSections = document.getElementsByClassName('monthSection'); var daySections = document.getElementsByClassName('daySection'); var yearSections = document.getElementsByClassName('yearSection'); var firstDelimiters = document.getElementsByClassName('firstDelimiter'); var secondDelimiters = document.getElementsByClassName('secondDelimiter'); if (country === 'US') { for (let i = 0; i < 2; i++) { (monthSections[i]).style['order'] = '-1'; (firstDelimiters[i]).style['order'] = '0'; (daySections[i]).style['order'] = '1'; (secondDelimiters[i]).style['order'] = '2'; (yearSections[i]).style['order'] = '3'; } } else if (country === 'JP') { for (let i = 0; i < 2; i++) { (yearSections[i]).style['order'] = '-1'; (secondDelimiters[i]).style['order'] = '0'; (monthSections[i]).style['order'] = '1'; (firstDelimiters[i]).style['order'] = '2'; (daySections[i]).style['order'] = '3'; } } else { for (let i = 0; i < 2; i++) { (daySections[i]).style['order'] = '-1'; (firstDelimiters[i]).style['order'] = '0'; (monthSections[i]).style['order'] = '1'; (secondDelimiters[i]).style['order'] = '2'; (yearSections[i]).style['order'] = '3'; } } } function createPermalinkContainer(asin, hostname) { var permalinkHref = getPermalink(hostname, asin); var permalinkContainer = document.querySelector('#permalink'); var permalink = document.createElement('a'); permalink.setAttribute('href', permalinkHref); permalink.innerText = permalinkHref; permalinkContainer.append(permalink); } function getPermalink(server, asin) { return server + '/dp/' + asin; } function triggerPricingFeedback( customerId, marketplaceId, asin, price, retailerType, retailerUrl, retailerName, retailerCity, retailerState, retailerPrice, retailerShipping, sampleDate ) { var dataCart = { ourPrice: parseInt(price), retailer: { type: retailerType, name: retailerName, city: retailerCity, state: retailerState, price: parseInt(retailerPrice), shippingCost: parseInt(retailerShipping), url: retailerUrl }, date: sampleDate + "T00:00:00.102Z" }; return new Promise((resolve, reject) => { A.$.ajax($("#aapiEndpoint").val() + "/api/marketplaces/" + marketplaceId + "/products/" + asin + "/feedback/pricing", { type: 'POST', headers: { 'Accept-Language': 'en-US', 'Accept': 'application/vnd.com.amazon.api+json; type="product.feedback.pricing/v1"', 'Content-Type': 'application/vnd.com.amazon.api+json; type="product.feedback.pricing.request/v1"', 'x-api-csrf-token': csrf }, data: JSON.stringify(dataCart), xhrFields: { withCredentials: true }, success: function (responseContent) { $("#pricingFeedback_thankcontent").innerText = "Success! " + responseContent.toString(); resolve(); }, error: function (err) { $("#pricingFeedback_thankcontent").innerText = "Error! " + err.toString(); reject(); } }) }) } function getAuthenticationPageURL(asin, hostname) { return hostname + '/ap/signin?_encoding=UTF8&openid.assoc_handle=usflex&openid.claimed_id=http://specs.openid.net/auth/2.0/identifier_select&openid.identity=http://specs.openid.net/auth/2.0/identifier_select&openid.mode=checkid_setup&openid.ns=http://specs.openid.net/auth/2.0&openid.ns.pape=http://specs.openid.net/extensions/pape/1.0&openid.pape.max_auth_age=0&openid.return_to=https://www.amazon.com/dp//'; } function getCurrentDay() { var date = new Date(); return date.getDate().toString(); } function getCurrentMonth() { var date = new Date(); return (date.getMonth() + 1).toString(); } function getCurrentYear() { var date = new Date(); return date.getFullYear().toString(); } function setInitialStates(onlineMonth, currentMonth, offlineMonth, onlineDay, currentDate, offlineDay, onlineYear, currentYear, offlineYear, onlineStoreInputForm, offlineStoreInputForm, enableOfflineStoreRadio, enableOnlineStoreRadio, onlineCalendar, offlineCalendar) { onlineMonth.defaultValue = currentMonth; offlineMonth.defaultValue = currentMonth; onlineDay.defaultValue = currentDate; offlineDay.defaultValue = currentDate; onlineYear.defaultValue = currentYear; offlineYear.defaultValue = currentYear; var onlineMonthOption = document.querySelector('#onlineMonthOptionDefault'); onlineMonthOption.innerText = currentMonth; var onlineMonthPrompt = document.querySelector('#onlineMonthPrompt'); onlineMonthPrompt.innerText = currentMonth; var offlineMonthOption = document.querySelector('#offlineMonthOptionDefault'); offlineMonthOption.innerText = currentMonth; var offlineMonthPrompt = document.querySelector('#offlineMonthPrompt'); offlineMonthPrompt.innerText = currentMonth; var onlineDateOption = document.querySelector('#onlineDateOptionDefault'); onlineDateOption.innerText = currentDate; var onlineDayPrompt = document.querySelector('#onlineDatePrompt'); onlineDayPrompt.innerText = currentDate; var offlineDateOption = document.querySelector('#offlineDateOptionDefault'); offlineDateOption.innerText = currentDate; var offlineDayPrompt = document.querySelector('#offlineDatePrompt'); offlineDayPrompt.innerText = currentDate; var onlineYearOption = document.querySelector('#onlineYearOptionDefault'); onlineYearOption.setAttribute('href', currentYear); onlineYearOption.innerText = currentYear; var onlineYearPrompt = document.querySelector('#onlineYearPrompt'); onlineYearPrompt.innerText = currentYear; var offlineYearOption = document.querySelector('#offlineYearOptionDefault'); offlineYearOption.setAttribute('href', currentYear); offlineYearOption.innerText = currentYear; var offlineYearPrompt = document.querySelector('#offlineYearPrompt'); offlineYearPrompt.innerText = currentYear; if (onlineMonth.children && offlineMonth.children && onlineDay.children && offlineDay.children) { onlineMonth.children[currentMonth].setAttribute('selected', currentMonth); offlineMonth.children[currentMonth].setAttribute('selected', currentMonth); onlineDay.children[currentDate].setAttribute('selected', currentDate); offlineDay.children[currentDate].setAttribute('selected', currentDate); } onlineStoreInputForm.style['display'] = 'none'; offlineStoreInputForm.style['display'] = 'none'; enableOfflineStoreRadio.checked = false; enableOnlineStoreRadio.checked = false; if (onlineCalendar.style && offlineCalendar.style) { onlineCalendar.style['display'] = 'flex'; offlineCalendar.style['display'] = 'flex'; } } function submitFeedback( customerId, marketplaceId, asin, price, onlineStoreInputForm, offlineStoreInputForm, onlineUrl, onlinePriceRaw, onlineShippingRaw, onlineDay, onlineMonth, offlineStoreName, offlineCity, offlineState, offlinePriceRaw, offlineDay, offlineMonth, thankYouDiv, errorDiv, submitButton, loadingGifDiv, errorMessages ) { errorDiv.innerHTML = ''; let cleanRetailerType, cleanRetailerUrl, cleanRetailerName, cleanRetailerCity, cleanRetailerState, cleanRetailerPrice, cleanRetailerShipping, cleanSampleDate; var currentYear = getCurrentYear(); if (onlineStoreInputForm.style['display'] === 'table') { var onlineValidity = validateOnlineInputs(onlineUrl, onlinePriceRaw, onlineShippingRaw, errorMessages); if (onlineValidity.valid) { cleanRetailerType = 'ONLINE'; cleanRetailerUrl = truncate(trim(onlineUrl), 300); cleanRetailerPrice = trim(onlinePriceRaw); cleanRetailerShipping = trim(onlineShippingRaw); if (!cleanRetailerShipping) { cleanRetailerShipping = '0'; } cleanSampleDate = formatDate( currentYear, onlineDay ? onlineDay : getCurrentDay(), onlineMonth ? onlineMonth : getCurrentMonth() ); } else { if (onlineValidity.error) { errorDiv.innerHTML = getErrorDiv(onlineValidity.error); } return null; } } else if (offlineStoreInputForm.style['display'] === 'table') { var offlineValidity = validateOfflineInputs( offlineStoreName, offlineCity, offlineState, offlinePriceRaw, errorMessages ); if (offlineValidity.valid) { cleanRetailerType = 'OFFLINE'; cleanRetailerName = truncate(trim(offlineStoreName), 100); cleanRetailerCity = truncate(trim(offlineCity), 100); cleanRetailerState = truncate(trim(offlineState), 100); cleanRetailerPrice = trim(offlinePriceRaw); cleanRetailerShipping = '0'; cleanSampleDate = formatDate( currentYear, offlineDay ? offlineDay : getCurrentDay(), offlineMonth ? offlineMonth : getCurrentMonth() ); } else { if (offlineValidity.error) { errorDiv.innerHTML = getErrorDiv(offlineValidity.error); } return null; } } else { errorDiv.innerHTML = getErrorDiv(errorMessages.errorNoRetailerType); return null; } loadingGifDiv.innerHTML = getLoadingGifDiv(); if (price) price = parseFloat(price); return triggerPricingFeedback( customerId, marketplaceId, asin, price, cleanRetailerType, cleanRetailerUrl, cleanRetailerName, cleanRetailerCity, cleanRetailerState, parseFloat(cleanRetailerPrice), parseFloat(cleanRetailerShipping), cleanSampleDate ) .then(response => { errorDiv.innerHTML = ''; thankYouDiv.innerHTML = getThankYouDiv(errorMessages.thankFeedback); submitButton.style.display = 'none'; return response; }) .catch(err => { errorDiv.innerHTML = getErrorDiv(errorMessages.errorSubmission); return null; }); } function validateOnlineInputs(url, onlinePrice, onlineShipping, errorMessages) { if (isEmptyValue(url) || isEmptyValue(onlinePrice)) { return { valid: false, error: errorMessages.errorEmptyFields }; } else if (!isValidUrl(url)) { return { valid: false, error: errorMessages.errorInvalidUrl }; } else if (!isNumericPrice(onlinePrice) || (!isEmptyValue(onlineShipping) && !isNumericPrice(onlineShipping))) { return { valid: false, error: errorMessages.errorBadPriceShipping }; } return { valid: true, error: null }; } function validateOfflineInputs(offlineStoreName, offlineCity, offlineState, offlinePrice, errorMessages) { if ( isEmptyValue(offlineStoreName) || isEmptyValue(offlineCity) || isEmptyValue(offlineState) || isEmptyValue(offlinePrice) ) { return { valid: false, error: errorMessages.errorEmptyFields }; } else if (!isNumericPrice(offlinePrice)) { return { valid: false, error: errorMessages.errorBadPrice }; } return { valid: true, error: null }; } function getErrorDiv(errorMsg) { return ( '\n' + ' ' + errorMsg + '\n' + ' ' ); } function getThankYouDiv(thankMsg) { return ( '' + '' + thankMsg + '\n' + '' ); } function getLoadingGifDiv() { return ''; } function isValidUrl(url) { if (!url) { return false; } var encodedUrl = encodeURI(url); return encodedUrl.match( /^(https?:\/\/)?(([a-z0-9-]|%[A-F0-9]{2})+\.)+(([a-z]|%[A-F0-9]{2})([a-z0-9]|%[A-F0-9]{2})*)(:[0-9]+)?(\/[a-z0-9;:,~!+#@&=%\/$\.?_-]+)?$/ ); } function isNumericPrice(price) { if (!price) { return false; } return price.match(/^([0-9]+\.?[0-9]*)$|^([0-9]*\.[0-9]+)$/); } function isEmptyValue(input) { return !input || input.length === 0 || input.match(/^\s*$/); } function truncate(input, length) { if (!input) { return ''; } else { return input.substr(0, length); } } function formatDate(year, date, month) { return year + '-' + month + '-' + date; } function trim(input) { if (!input) { return ''; } else { return input.trim(); } } function resetModalToInitialState(currentMonth, currentDate, currentYear) { var enableOnlineStoreRadio = document.querySelector('#pricingFeedback_onlineRadio'); var enableOfflineStoreRadio = document.querySelector('#pricingFeedback_offlineRadio'); var onlineStoreInputForm = document.querySelector('#pricingFeedback_onlineInput'); var offlineStoreInputForm = document.querySelector('#pricingFeedback_offlineInput'); var onlineUrl = document.querySelector('#onlineUrl'); var onlinePriceRaw = document.querySelector('#onlinePriceRaw'); var onlineShippingRaw = document.querySelector('#onlineShippingRaw'); var onlineDay = document.querySelector('#onlineDay'); var onlineMonth = document.querySelector('#onlineMonth'); var onlineYear = document.querySelector('#onlineYear'); var onlineCalendar = document.querySelector('#onlineCalendar'); var offlineStoreName = document.querySelector('#offlineStoreName'); var offlineCity = document.querySelector('#offlineCity'); var offlineState = document.querySelector('#offlineState'); var offlinePriceRaw = document.querySelector('#offlinePriceRaw'); var offlineDay = document.querySelector('#offlineDay'); var offlineMonth = document.querySelector('#offlineMonth'); var offlineYear = document.querySelector('#offlineYear'); var offlineCalendar = document.querySelector('#offlineCalendar'); var thankYouDiv = document.querySelector('#pricingFeedback_thank'); var errorDiv = document.querySelector('#pricingFeedback_error'); var submitButton = document.querySelector('#pricingFeedback_submit'); var loadingGifDiv = document.querySelector('#loading'); var stateDefaultOption = document.querySelector('#stateDefaultOption'); var stateDefaultPrompt = document.querySelector('#stateDefaultPrompt'); if (thankYouDiv) { thankYouDiv.innerHTML = ''; } if (errorDiv) { errorDiv.innerHTML = ''; } if (loadingGifDiv) { loadingGifDiv.innerHTML = ''; } if (submitButton) { submitButton.style.display = 'block'; } onlineUrl.value = ''; onlinePriceRaw.value = ''; onlineShippingRaw.value = ''; offlineStoreName.value = ''; offlineCity.value = ''; offlineState.value = ''; offlinePriceRaw.value = ''; stateDefaultOption.innerHTML = $("#selectProvince").val(); stateDefaultPrompt.innerHTML = $("#selectProvince").val(); setInitialStates( onlineMonth, currentMonth, offlineMonth, onlineDay, currentDate, offlineDay, onlineYear, currentYear, offlineYear, onlineStoreInputForm, offlineStoreInputForm, enableOfflineStoreRadio, enableOnlineStoreRadio, onlineCalendar, offlineCalendar ); } }); if(window.mix_csa){window.mix_csa('[cel_widget_id="p13n-desktop-carousel_DPSims_0"]', '#CardInstanceg3GYnH1RG0Iafzv4n3QeaQ')('mark', 'bb')} if(window.uet){window.uet('bb','p13n-desktop-carousel_DPSims_0',{wb: 1})} .p13n-sc-shoveler li.a-carousel-card-empty{min-height:250px}.p13n-sc-skeleton-loading .p13n-sc-shoveler li.a-carousel-card-empty{background:url(https://m.media-amazon.com/images/G/01/p13n/shared-components/loading.png);background-repeat:no-repeat;background-size:contain;overflow:hidden;position:relative}.p13n-sc-skeleton-loading .p13n-sc-shoveler li.a-carousel-card-empty:after{-webkit-animation:_cDEzb_placeholder-anim_3Mzpp 2s ease-in-out infinite;animation:_cDEzb_placeholder-anim_3Mzpp 2s ease-in-out infinite;background:-webkit-linear-gradient(left,hsla(180,4%,79%,0),#fff,hsla(180,4%,79%,0));background:linear-gradient(90deg,hsla(180,4%,79%,0),#fff,hsla(180,4%,79%,0));border:none;border-radius:0 0 0 0;content:"";display:inline-block;height:100%!important;left:0;position:absolute;top:0;vertical-align:baseline;width:300px!important}@-webkit-keyframes _cDEzb_placeholder-anim_3Mzpp{0%{background-position-x:-150px}to{background-position-x:150px}}@keyframes _cDEzb_placeholder-anim_3Mzpp{0%{background-position-x:-150px}to{background-position-x:150px}}.p13n-sc-lazy-desktop .a-carousel-viewport{min-height:244px} ._cDEzb_p13n-sc-css-line-clamp-1_1Fn1y{-webkit-line-clamp:1;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}._cDEzb_p13n-sc-css-line-clamp-2_EWgCb{-webkit-line-clamp:2;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}._cDEzb_p13n-sc-css-line-clamp-3_g3dy1{-webkit-line-clamp:3;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}._cDEzb_p13n-sc-css-line-clamp-4_2q2cc{-webkit-line-clamp:4;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}._cDEzb_p13n-sc-css-line-clamp-5_2l-dX{-webkit-line-clamp:5;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}._cDEzb_p13n-sc-css-line-clamp-6_28daG{-webkit-line-clamp:6;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}._cDEzb_p13n-sc-css-line-clamp-7_1k_Mc{-webkit-line-clamp:7;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}._cDEzb_p13n-sc-css-line-clamp-8_1yvsR{-webkit-line-clamp:8;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}._cDEzb_p13n-sc-css-line-clamp-9_3Pofd{-webkit-line-clamp:9;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}._cDEzb_p13n-sc-css-line-clamp-10_mY8_7{-webkit-line-clamp:10;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden} ._cDEzb_sponsoredLabel_RxXGt{color:#555;font-size:11px;line-height:23px;margin-bottom:4px} ._cDEzb_p13n-list-faceout-asin-row_1Arbr{margin-bottom:20px;margin-top:20px}._cDEzb_p13n-list-faceout-asin-detail-row_oQvd_{display:inline;width:650px}._cDEzb_feedback-switch_1qaMd{cursor:pointer;display:inline-block;height:50px;margin-top:5px;vertical-align:top;width:50px}._cDEzb_p13n-record-feedback-error-message_1fVND{margin-top:10px} ._cDEzb_p13n-list-faceout-asin-title_36t6X{margin-left:20px;margin-top:10px}._cDEzb_p13n-list-faceout-asin-title-wrapper_1ZzCK{width:290px}._cDEzb_p13n-list-faceout-not-interested-message-wrapper_2hNsd{padding-left:20px;padding-top:10px;width:380px}._cDEzb_feedback-button-row_i2GbB{-webkit-box-pack:end;-ms-flex-pack:end;display:-webkit-box;display:-ms-flexbox;display:flex;justify-content:flex-end}._cDEzb_p13n-list-faceout-remove-recs-button-content_EN5yY{margin-top:18px;width:220px!important}._cDEzb_p13n-list-faceout-undo-button-content_2NwaL{margin-top:15px;width:120px!important}._cDEzb_undo-button_2vLoX{cursor:pointer;font-weight:bolder;margin-top:3px} ._cDEzb_subtitle_2kEiH{line-height:10px} ._cDEzb_panel-text_3TtlT{width:220px}._cDEzb_panel-container_3ZNzh{float:left;width:238px}._cDEzb_panel-subsection_19oyW{padding-left:15px;padding-right:18px}._cDEzb_panel-logo-container_ucYMM{height:33px;margin-bottom:5px;width:220px}._cDEzb_panel-button_GP7zd{width:auto} ._cDEzb_p13n-flex-container-header-kebab_12qKs{-webkit-box-pack:justify;-ms-flex-pack:justify;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;justify-content:space-between} .p13n-report-flag-hide{cursor:none;display:none}.p13n-report-flag{background-image:url(https://m.media-amazon.com/images/S/sash/vh8ofoqOd7XyRsk.png);background-repeat:no-repeat;background-size:15px 16px;cursor:pointer;height:16px;position:absolute;right:20px;top:35px;width:15px}.p13n-report-flag:hover{background-image:url(https://m.media-amazon.com/images/S/sash/WXxFP-k55X6KCh2.png)}.p13n-report-problem-modal-root{padding:14px 18px} ._cDEzb_p13n-popover-button-divider_1Jt36{margin:6px 0}._cDEzb_p13n-feedback-popover-button_2rWBn{background:url(https://m.media-amazon.com/images/G/01/x-locale/personalization/core-recs/canaries/kebabgrey_18.png) no-repeat 0 0;background-size:18px;display:block;height:18px;text-decoration:none;width:18px}._cDEzb_p13n-feedback-popover-button_2rWBn:hover{background-position:0 -18px}._cDEzb_p13n-feedback-modal-height_1uBiC{height:450px}._cDEzb_p13n-desktop-feedback-kebab-wrapper_jo5L2{margin:0 3px 15px 10px}._cDEzb_p13n-desktop-feedback-modal-center-utils_3n1l4{height:35px;margin-top:10px;text-align:center}._cDEzb_p13n-desktop-feedback-modal-changeover_MVHoj{display:none} ._cDEzb_rvi-ee-text_caPZz{font-size:10px;line-height:10px} ._cDEzb_asin-title_2KJ6_{font-size:14px;font-weight:bolder;margin-left:20px;margin-top:10px;text-align:left}._cDEzb_asin-row_3PozI{display:block}._cDEzb_asin-detail-row_T7Jm0{margin-bottom:-12px}._cDEzb_image_11f2t{height:90px;width:90px}._cDEzb_feedback-switch_2zE08{cursor:pointer;display:inline-block;height:50px;margin-top:5px;vertical-align:top;width:50px} ._cDEzb_card_2yY06{width:95%}._cDEzb_image-and-offer_XQEhq{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:0;margin-top:10px}._cDEzb_review-row_1d5Qn{padding-right:10px;width:100%}._cDEzb_row_1eL-2{width:100%}._cDEzb_icon_3kTmk{background-position:-310px -5px;height:1.6rem;width:1.6rem} ._cDEzb_scrollable-card_2fUxq{text-align:left;width:95%}._cDEzb_close-icon-row_1UiN7{height:5px;min-width:600px;padding-right:10px;text-align:right;width:100%}[dir=rtl] ._cDEzb_close-icon-row_1UiN7{height:5px;min-width:600px;text-align:left;width:100%}._cDEzb_close-icon-column_33S0b{height:inherit}._cDEzb_detail-column_3HoqU{text-align:left}[dir=rtl] ._cDEzb_detail-column_3HoqU{text-align:right}._cDEzb_scrollable-row_bJNDZ{width:100%}._cDEzb_icon__PtFG{background-position:-310px -5px;cursor:pointer;height:1.6rem;width:1.6rem}._cDEzb_feedbackText_1z8PE{cursor:pointer}._cDEzb_nonOverlapping-card_3Xb1r{width:95%}._cDEzb_nonOverlapping-row_2Q-t7{-ms-flex-pack:distribute;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;justify-content:space-around;max-width:800px;min-width:600px;text-align:left;width:100%} ._cDEzb_maskStyling_1IlBq{background-color:#0f1111;border-radius:4px;height:100%;left:0;opacity:.03;position:absolute;top:0;width:100%}._cDEzb_positionRelativeCss_ZwMqj{padding:8px;position:relative}._cDEzb_noop_3Xbw5{-webkit-perspective:none;perspective:none} ._cDEzb_p13n-sc-css-line-clamp-1_1ZO6n{-webkit-line-clamp:1;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}._cDEzb_p13n-sc-css-line-clamp-2_2R0OL{-webkit-line-clamp:2;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}._cDEzb_p13n-sc-css-line-clamp-3_OxGLy{-webkit-line-clamp:3;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}._cDEzb_p13n-sc-css-line-clamp-4_Zr-Ep{-webkit-line-clamp:4;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}._cDEzb_p13n-sc-css-line-clamp-5_3v9Pj{-webkit-line-clamp:5;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}._cDEzb_p13n-sc-css-line-clamp-6_Z2TkG{-webkit-line-clamp:6;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}._cDEzb_p13n-sc-css-line-clamp-7_1VEgO{-webkit-line-clamp:7;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}._cDEzb_p13n-sc-css-line-clamp-8_2H34L{-webkit-line-clamp:8;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}._cDEzb_p13n-sc-css-line-clamp-9_2Gnhf{-webkit-line-clamp:9;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}._cDEzb_p13n-sc-css-line-clamp-10_1itnD{-webkit-line-clamp:10;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden} ._cDEzb_p13n-sc-price_31f6D{word-wrap:normal} .p13n-faceout-static-left-padding .a-col-right[style]{padding-left:10px!important} ._cDEzb_heroBanner_1Y4Dy{min-height:60px}._cDEzb_heroLabel_3b1XQ{display:block}._cDEzb_setLabel_1T92X{display:block;margin-top:-2px}._cDEzb_baseAsinLabel_3LESS{display:block} ._cDEzb_almStore_n5J0M{margin-top:2px;max-height:14px} ._cDEzb_p13n-prime-badge_GVM4h{position:relative;top:2px} ._cDEzb_read-for-free-button-form_3lKBG{margin-bottom:0} ._cDEzb_p13n-sc-price_3mJ9Z{word-wrap:normal;overflow-x:hidden}._cDEzb_p13n-sc-price-animation-wrapper_3PzN2{position:relative}._cDEzb_p13n-sc-savings-percent_20USI{color:#cc0c39;font-weight:300} ._cDEzb_p13n-sc-youpay_2mwp6{word-wrap:normal;overflow-x:hidden}._cDEzb_p13n-sc-youpay-wrapper_3MfNG{position:relative} input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}input[type=number]{-moz-appearance:textfield} [data-a-badge-color=sx-summit]{background-color:#d5dbdb!important;color:#d5dbdb!important}[data-a-badge-color=alm-error]{background-color:#e2080b!important;color:#e2080b!important}[data-a-badge-color=sx-granite]{color:#373d3e!important}span[id^=atc-error-badge],span[id^=atc-success-badge]{max-width:140px;position:absolute} ._cDEzb_p13nBusinessDiscountsWrapper_2rPZr{margin-bottom:3px;margin-top:3px}._cDEzb_p13nBusinessDiscountsBadge_3Z5kg{background:#7fccec;padding:3px 6px} ._cDEzb_p13nBusinessPromotionalBadgeWrapper_1P8Dk{color:#fff;margin-bottom:3px;margin-top:3px}._cDEzb_p13nBusinessPromotionalBadge_1xUcd{background:#025491;color:#fff;padding:4px 6px} ._cDEzb_p13n-sc-cpf-badge_dMVLV{color:#168342!important;text-decoration:none!important}._cDEzb_p13n-sc-cpf-badge_dMVLV i{margin-top:0;vertical-align:middle}._cDEzb_p13n-sc-cpf-cert-row_3PW-5{-webkit-box-align:center;-ms-flex-align:center;-webkit-box-orient:horizontal;-webkit-box-direction:normal;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row}._cDEzb_p13n-sc-cpf-cert-logo_2T8hY{margin-right:18px;min-width:45px}._cDEzb_p13n-sc-cpf-cert-column_1r84G{-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column}._cDEzb_p13n-sc-cpf-cert-column_1r84G,._cDEzb_p13n-sc-cpf-cert-grid_2Z5J-{-webkit-box-direction:normal;display:-webkit-box;display:-ms-flexbox;display:flex}._cDEzb_p13n-sc-cpf-cert-grid_2Z5J-{-webkit-box-orient:horizontal;-ms-flex-direction:row;flex-direction:row}._cDEzb_p13n-sc-cpf-link_3r-aG{text-decoration:underline!important}._cDEzb_p13n-sc-cpf-bottom-sheet_R9HFz{padding:21px 15px} ._cDEzb_p13n-coupon-badge_3d5NR{background:#7fda69;color:#111;display:inline-block;padding:0 6px;position:relative} ._cDEzb_p13n-gg-rectangle_33WUq{-webkit-box-pack:center;-ms-flex-pack:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:#555;border-color:#555;color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;float:left;justify-content:center;min-width:36px;padding-left:8px;padding-right:3px}._cDEzb_p13n-gg-triangle_2O1ZH{border-right:10px solid transparent;color:#555;float:left;height:0;width:0}._cDEzb_p13n-gg-badge-height-desktop_2gU_A{height:20px;line-height:20px}._cDEzb_p13n-gg-badge-height-mobile_1vyht{height:18px;line-height:18px}._cDEzb_p13n-gg-triangle-height-desktop_2oeq6{border-top:20px solid}._cDEzb_p13n-gg-triangle-height-mobile_1iCtm{border-top:18px solid}._cDEzb_p13n-gg-display-mobile_ZG6U7{display:inline-block} ._cDEzb_p13n-fr-text_3ysaH{color:#fff;font-size:12px;line-height:18px;margin-left:4px;margin-right:3px;padding-top:1px}[dir=rtl] ._cDEzb_p13n-fr-text_3ysaH{margin-left:3px;margin-right:8px}._cDEzb_p13n-fr-body_2Gxe4{display:-webkit-box;display:-ms-flexbox;display:flex;float:left;height:20px;line-height:18px;min-width:60px}[dir=rtl] ._cDEzb_p13n-fr-body_2Gxe4{float:right}._cDEzb_p13n-fr-body-charcoal_2gQPa{background-color:#303333;border-color:#303333}._cDEzb_p13n-fr-body-stone_2C7aU{background-color:#6f7373;border-color:#6f7373}._cDEzb_p13n-fr-triangle_3PmcP{border-right:10px solid transparent;border-top:20px solid;float:left;height:0;width:0}[dir=rtl] ._cDEzb_p13n-fr-triangle_3PmcP{border-left:10px solid transparent;border-right:0;float:right}._cDEzb_p13n-fr-triangle-charcoal_17tLm{color:#303333}._cDEzb_p13n-fr-triangle-stone_Voco2{color:#6f7373} ._cDEzb_p13n-best-seller-badge_1-yh1{background-color:#c45500!important;font-size:12px;padding-bottom:2px;padding-top:2px}[dir=rtl] ._cDEzb_p13n-best-seller-badge-container_2pqK7{float:right}._cDEzb_p13n-best-seller-badge-container_2pqK7{display:inline-block;position:relative}._cDEzb_p13n-best-seller-badge_1-yh1:before{border-bottom-color:#c45500!important}._cDEzb_p13n-best-seller-badge_1-yh1:after{border-top-color:#c45500!important}._cDEzb_p13n-sc-bestseller-badge-body_3nkHf{background-color:#c45500;float:left;line-height:18px;padding-left:6px;padding-right:3px}._cDEzb_p13n-sc-bestseller-badge-text_3apKt{color:#fff;line-height:18px}._cDEzb_p13n-sc-bestseller-badge-triangle_2Z3cK{border-right:9px solid transparent;border-top:18px solid;color:#c45500;float:left;height:0;width:0} ._cDEzb_p13n-ac-text-primary_2h8zx,._cDEzb_p13n-ac-text-secondary_17RUV{font-family:Amazon Ember,Arial!important;font-size:12px!important;line-height:22px}._cDEzb_p13n-ac-text-primary_2h8zx{color:#fff;margin-left:8px;margin-right:3px}[dir=rtl] ._cDEzb_p13n-ac-text-primary_2h8zx{margin-left:3px;margin-right:8px}._cDEzb_p13n-ac-text-secondary_17RUV{color:#f69931;margin-right:8px}[dir=rtl] ._cDEzb_p13n-ac-text-secondary_17RUV{margin-left:8px;margin-right:0}._cDEzb_p13n-ac-body_3XXUM{background-color:#232f3e;border-color:#232f3e;display:-webkit-box;display:-ms-flexbox;display:flex;float:left;height:22px;min-width:80px}[dir=rtl] ._cDEzb_p13n-ac-body_3XXUM{float:right}._cDEzb_p13n-ac-triangle_qo4WF{border-right:10px solid transparent;border-top:22px solid;color:#232f3e;float:left;height:0;width:0}[dir=rtl] ._cDEzb_p13n-ac-triangle_qo4WF{border-left:10px solid transparent;border-right:0;float:right} ._cDEzb_p13n-delight-pricing-badge_26S9Q{background:#b12704;color:#fff;display:inline-block;padding:2px 10px;position:relative} ._cDEzb_p13nDealOfTheDay_cVlwZ{background:#b12704;color:#fff;float:right;padding:2px 4px;position:relative}._cDEzb_dealsCardDealTimer_2oYBO{display:inline-block}._cDEzb_dealsCardPercentClaimed_1GTDI{display:inline-block;padding-top:3px} ._cDEzb_savingsBadgeWrapper_3DNjt{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;font-size:12px;margin-bottom:4px;margin-top:3px}._cDEzb_savingsBadgeLabel_2pUXu{border-radius:2px;line-height:16px;margin-right:6px;padding:4px 6px;position:relative}._cDEzb_savingsBadgeMessage_2JUtl{-webkit-box-flex:1;-ms-flex:1 1;flex:1 1;font-weight:700;line-height:12px;position:relative} ._cDEzb_p13nDealOfTheDayBadge_2Nn7x{background:#b12704;color:#fff;padding:2px 4px} ._cDEzb_curation_13VGx{margin-bottom:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}._cDEzb_curation_13VGx ._cDEzb_icon_3_dKr{width:20px} ._cDEzb_sponsoredLabel_2UvSK{color:#555;font-size:11px} ._cDEzb_energy-efficiency-container_1Pkva{text-align:left}._cDEzb_energy-efficiency-badge-standard_28gp8{cursor:pointer;display:inline-block;height:24px}._cDEzb_energy-efficiency-badge-shape_1IcJY{display:inline-block;height:24px}._cDEzb_energy-efficiency-badge-rating_3_0eN{fill:#fff;font-size:20px;vertical-align:middle}._cDEzb_energy-efficiency-badge-rating-sign_1ronK{fill:#fff;font-size:14px;vertical-align:middle}._cDEzb_energy-efficiency-badge-rating-2021_2Q_3P{left:24px * .6;text-shadow:-.5px -.5px 0 #000,.5px -.5px 0 #000,-.5px .5px 0 #000,.5px .5px 0 #000}._cDEzb_energy-efficiency-badge-data-sheet-label-container_2iEi2{display:inline-block;padding-left:5px;padding-top:0;position:absolute;vertical-align:middle}._cDEzb_energy-efficiency-badge-data-sheet-label_3b6X3{cursor:pointer;word-break:break-word} ._cDEzb_inlineErrorDetails_1NBx-{margin-right:-2px;vertical-align:text-top} Featured items you may likePage 1 of 1 Start overPage 1 of 1 Previous pageAmazon Basics LR44 Alkaline Button Coin Cell Battery, 1.5 Volt, Long Lasting Power, Mercury Free - Pack of 64.7 out of 5 stars 248,336#1 Best Seller in Coin & Button Cell Batteries1 offer from $5.51Hose Splitter, 2 Way Heavy Duty, Garden Faucet, Faucet Splitter, Hose y Splitter, Garden Hose y Splitter, Hose Bib Splitter, All Metal, with Shut Off Valve4.5 out of 5 stars 25,575#1 Best Seller in Garden Hose Splitters1 offer from $19.99Amazon Basics 4-Wheel Garden Hose Reel Cart, Holds up to 300-Feet of 5/8-Inch Hose4.0 out of 5 stars 721 offer from $154.04Orbit 56044 Front Trigger 10 Pattern Turret Wand with Ratcheting Colors may vary4.4 out of 5 stars 4,359 Amazon's Choice in Garden Hose Wands5 offers from $19.43Amazon Basics Pet Grooming Set Brush Shedding Tool Comb Scissors Nail Clippers - 8 in 1, Red4.5 out of 5 stars 483 Amazon's Choice in Cat Grooming Scissors1 offer from $37.99Miracle-Gro Liquafeed All Purpose Plant Food, 4-Pack Refills4.7 out of 5 stars 6,4009 offers from $12.48Next pageif(window.mix_csa){window.mix_csa('[cel_widget_id="p13n-desktop-carousel_DPSims_0"]', '#CardInstanceg3GYnH1RG0Iafzv4n3QeaQ')('mark', 'be')} if(window.uet){window.uet('be','p13n-desktop-carousel_DPSims_0',{wb: 1})} if(window.mixTimeout){window.mixTimeout('p13n-desktop-carousel', 'CardInstanceg3GYnH1RG0Iafzv4n3QeaQ', 90000)}; P.when('mix:@amzn/mix.client-runtime', 'mix:p13n-desktop-carousel__S3XqUOxo').execute(function (runtime, cardModule) {runtime.registerCardFactory('CardInstanceg3GYnH1RG0Iafzv4n3QeaQ', cardModule).then(function(){if(window.mix_csa){window.mix_csa('[cel_widget_id="p13n-desktop-carousel_DPSims_0"]', '#CardInstanceg3GYnH1RG0Iafzv4n3QeaQ')('mark', 'functional')}if(window.uex){window.uex('ld','p13n-desktop-carousel_DPSims_0',{wb: 1})}});}); P.load.js('https://images-na.ssl-images-amazon.com/images/I/41YIfWfhvPL.js?xcp'); (window.AmazonUIPageJS ? AmazonUIPageJS : P).when('A', 'dram-lazy-load-widget', 'ready').execute(function(A) {A.trigger('dram:register-lazy-load-widget', '#DPSims_sims-container_desktop-dp-sims_1_container',2500, 'DPSims_desktop', false);});{"encryptedLazyLoadRenderRequest":"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"} (window.AmazonUIPageJS ? AmazonUIPageJS : P).load.js('https://images-na.ssl-images-amazon.com/images/I/01UiZXT0lxL.js?AUIClients/DramAssets'); (window.AmazonUIPageJS ? AmazonUIPageJS : P).when('A', 'dram-lazy-load-widget', 'ready').execute(function(A) {A.trigger('dram:register-lazy-load-widget', '#DPSims_sim





