
Share on:
Avenlur Juniper Indoor 5-in-1 Montessori Toddler Playset - Foldable Gym for Kids with Slide, Swing, Ladder, and Rock Climbing Wall - Develops Child Motor Skills and Confidence While Having Fun IndoorsFound 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 ); } }); From the brand /* * Used when device = desktop * Configured in: configuration/brazil-config/global/brand-story.cfg */ /* Because the carousel is implemented as an ol list, any lists in the card text will have a secondary list style (letters). This will give an incorrect appearance to viewers, so we set all lists to the primary list style (numbers). */ .aplus-brand-story-card ol li { list-style: decimal; } /* Top level containers */ .aplus-module .apm-brand-story-hero { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; width: 1464px; height: 625px; background-color: #fff; } .aplus-module .apm-brand-story-card { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; width: 362px; height: 453px; background-color: #fff; } .apm-brand-story-hero, .apm-brand-story-card { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; position: relative; width: 100%; height: 100%; float: none; } .aplus-module.brand-story-card-1-four-asin .apm-brand-story-card { /* Only 12px to account for image cell border */ padding: 12px; } /* Full background image (Hero 1 & Card 2) */ .aplus-module .apm-brand-story-background-image { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; overflow: hidden; position: absolute; width: 100%; height: 100%; } /* Card 1 small images */ .aplus-module .apm-brand-story-image-row { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; height: 185px; padding: 0px; margin: auto; display: flex; } .aplus-module .apm-brand-story-image-row .apm-brand-story-image-cell { /* Use content-box to ensure image size matches editor schema */ -moz-box-sizing: content-box; -webkit-box-sizing: content-box; box-sizing: content-box; padding: 0px; margin: 0px; width: 166px; border: 1px solid #fff; } .aplus-module .apm-brand-story-image-row .apm-brand-story-image-cell .apm-brand-story-image-link { display: block; width: 100%; height: 100%; } .aplus-module .apm-brand-story-image-row .apm-brand-story-image-cell .apm-brand-story-image-link .apm-brand-story-image-img { display: block; width: 100%; height: 100%; object-fit: cover; } /* Card 3 logo image */ .aplus-module .apm-brand-story-logo-image { -moz-box-sizing: content-box; -webkit-box-sizing: content-box; box-sizing: content-box; height: 145px; margin: 0px 4px; padding: 20px; padding-bottom: 0px; } /* Text overlays */ .aplus-module .apm-brand-story-text-bottom { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; position: absolute; bottom: 13px; left: 13px; } .aplus-module .apm-brand-story-hero .apm-brand-story-text-bottom { background-color: rgba(0,0,0,0.6); color: #fff; padding: 13px 65px 13px 13px; /* accounts for overlap of first card */ width: 437px; } .aplus-module.brand-story-card-2-media-asset .apm-brand-story-text-bottom { background-color: rgba(255,255,255,0.6); color: #000; padding: 13px; width: 336px; } .aplus-module.brand-story-card-1-four-asin .apm-brand-story-text { margin-top: 8px; } .aplus-module.brand-story-card-1-four-asin .apm-brand-story-text.apm-brand-story-text-single { margin-top: 20px; } .aplus-module.brand-story-card-1-four-asin .apm-brand-story-text h3 { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .aplus-module .apm-brand-story-slogan-text { -moz-box-sizing: content-box; -webkit-box-sizing: content-box; box-sizing: content-box; margin: 0px 4px; padding: 20px; } .aplus-module .apm-brand-story-faq { -moz-box-sizing: content-box; -webkit-box-sizing: content-box; box-sizing: content-box; padding-top: 10px; } .aplus-module .apm-brand-story-faq-block { margin: 0px 10px; padding: 10px; } .aplus-v2 .apm-brand-story-carousel-container { position: relative; } .aplus-v2 .apm-brand-story-carousel-hero-container, .aplus-v2 .apm-brand-story-carousel-hero-container > div { position: absolute; width: 100%; } /* Ensuring the carousel takes only the space it needs. The sizes need to be set again on the absolutely positioned elements so they can take up space. */ .aplus-v2 .apm-brand-story-carousel-container, .aplus-v2 .apm-brand-story-carousel-hero-container { height: 625px; width: calc(100% + 15px); max-width: 1464px; margin-left: auto; margin-right: auto; } /* This centers the carousel vertically on top of the hero image container and after the logo area (125px). Margin-top = (heroHeight - cardHeight - logoAreaHeight) / 2 + logoAreaHeight */ .aplus-v2 .apm-brand-story-carousel .a-carousel-row-inner{ margin-top: 149px; } /* Cards need to have a width set, otherwise they default to 50px or so. All cards must have the same width. The carousel will resize itself so all cards take the width of the largest card. The left margin is for leaving a space between each card. */ .aplus-v2 .apm-brand-story-carousel .a-carousel-card { width: 362px; margin-left: 30px !important; } /* styling the navigation buttons so they are taller, flush with the sides, and have a clean white background */ .aplus-v2 .apm-brand-story-carousel .a-carousel-col.a-carousel-left, .aplus-v2 .apm-brand-story-carousel .a-carousel-col.a-carousel-right { padding: 0px; } .aplus-v2 .apm-brand-story-carousel .a-carousel-col.a-carousel-left .a-button-image, .aplus-v2 .apm-brand-story-carousel .a-carousel-col.a-carousel-right .a-button-image { border: none; margin: 0px; } .aplus-v2 .apm-brand-story-carousel .a-carousel-col.a-carousel-left .a-button-image .a-button-inner, .aplus-v2 .apm-brand-story-carousel .a-carousel-col.a-carousel-right .a-button-image .a-button-inner { background: #fff; padding: 20px 6px; } .aplus-v2 .apm-brand-story-carousel .a-carousel-col.a-carousel-left .a-button-image .a-button-inner { border-radius: 0px 4px 4px 0px; } .aplus-v2 .apm-brand-story-carousel .a-carousel-col.a-carousel-right .a-button-image .a-button-inner { border-radius: 4px 0px 0px 4px; } We Get Parenting. We got you Parenting can be complicated, messy, and confusing. Buying your kids the toys they need and want, shouldn't be. We had playrooms full of toys, but our kids had nothing to play with. Pieces were missing & broken. We wanted to be great parents whose kids didn't go on screens until college, but they were bored, & we were tired. We wanted them to move, create & play. To jump, just not on the couch. To climb, just not on us. So we created toys that our kids wanted to play with and Avenlur began. We are a local US company with direct support as needed. Our thoughtfully designed products are built to last and trusted in thousands of homes across the country. Desk Table, Chair Simply unscrew these black topped screws. It takes 2 minutes to unscrew, fold and store against the wall or under your bed.Easily remove the slide, or turn it over and it becomes as rock climber. Can adjust to use on different rungs for different angles and heights. " data-position="triggerHorizontal" /> (function(f) {var _np=(window.P._namespace("PremiumAplusModule"));if(_np.guardFatal){_np.guardFatal(f)(_np);}else{f(_np);}}(function(P) { P.when('premium-module-10-hotspot-desktop').execute(function(init) { init(); }); })); (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_3_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'); .postpurchase-included-components-list-item { text-align: left; word-wrap: break-word; } .postpurchase-included-components-list-group { margin: 0 0 1px 18px; } What's in the box Slide Swing .ask-product-docs-expander-content { padding-left: 0; margin-top: 0; } if(window.mix_csa){window.mix_csa('[cel_widget_id="vse-vw-dp-card_DetailPage_0"]', '#CardInstanceEzVhDSX4q6SA7cEa-MGsGA')('mark', 'bb')} if(window.uet){window.uet('bb','vse-vw-dp-card_DetailPage_0',{wb: 1})} ._vse-vw-dp-card_sharedStyles_vseCarouselItem__37W2L{border:1px solid #ddd;border-radius:10px;display:inline-block;overflow:hidden;-webkit-perspective:1px;perspective:1px;text-decoration:none;width:100%}._vse-vw-dp-card_sharedStyles_vseCardsVideoThumbnail__1saad{color:#fff;position:relative}._vse-vw-dp-card_sharedStyles_vseCardsVideoThumbnail__1saad video{max-width:100%}._vse-vw-dp-card_sharedStyles_vsePlayButton__2l8Wk{bottom:0;left:0;margin:auto;position:absolute;right:0;top:0}._vse-vw-dp-card_sharedStyles_vseVideoDuration__10qBV{background:-webkit-linear-gradient(bottom,rgba(17,20,23,.741) 99%,#121417 0);background:linear-gradient(0deg,rgba(17,20,23,.741) 99%,#121417 0);border-radius:4px 0 0 0;bottom:0;height:26px;line-height:1.54;padding:3px 8px;position:absolute;right:0;text-align:center;width:50px;z-index:1}._vse-vw-dp-card_sharedStyles_vseVideoTitleBlock__2Zejt{position:relative}._vse-vw-dp-card_sharedStyles_vseVideoTitleBlock__2Zejt:before{background-color:hsla(0,0%,7%,.5);content:"";height:100%;left:0;position:absolute;top:0;width:100%;z-index:1}._vse-vw-dp-card_sharedStyles_vseThumbnailSecondaryImg__1HNia{-webkit-filter:blur(10px);filter:blur(10px);-webkit-transform:scale(1.75);-ms-transform:scale(1.75);transform:scale(1.75)}._vse-vw-dp-card_sharedStyles_vseVideoTitleBlockOverlay__fVo3U{bottom:0;height:67px;padding:6px 12px 10px;position:absolute;right:0;text-align:left;width:100%;z-index:1}._vse-vw-dp-card_sharedStyles_vseVideoTitleWithCreator__3aM9D{display:inline-block;width:100%}._vse-vw-dp-card_sharedStyles_vseHasProfile__1lEwT ._vse-vw-dp-card_sharedStyles_vseVideoTitleWithCreator__3aM9D{width:80%}._vse-vw-dp-card_sharedStyles_vseVideoCreatorName__RSZKF{font-size:12px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}._vse-vw-dp-card_sharedStyles_vseVideoImage__2o-ef{z-index:1}._vse-vw-dp-card_sharedStyles_vseVideoTitleText__2Fft5{color:#fff;font-size:13px;font-weight:700;line-height:1.31;text-decoration:inherit;white-space:normal}._vse-vw-dp-card_sharedStyles_vseVideoTitle__2WNNT{-webkit-box-orient:vertical;-webkit-line-clamp:2;display:-webkit-box;line-height:1.31;max-height:2.62em;overflow:hidden;text-overflow:-o-ellipsis-lastline}._vse-vw-dp-card_sharedStyles_vseWidgetPageState__1DTL8{display:none}._vse-vw-dp-card_sharedStyles_vsePlaceholder__1HQO8{height:100%}@media only screen and (max-width:1023px){._vse-vw-dp-card_sharedStyles_vseNoRightPadding__3EhOG,._vse-vw-dp-card_sharedStyles_vsePlaceholderLeft__1Avr5{padding-right:0!important}._vse-vw-dp-card_sharedStyles_vsePlaceholderRight__1nica{margin:0!important;width:100%!important}._vse-vw-dp-card_sharedStyles_vseRemoveAbsolute__GDCXz ._vse-vw-dp-card_sharedStyles_vsePlaceholder__1HQO8{display:none}._vse-vw-dp-card_sharedStyles_vseRemoveAbsolute__GDCXz ._vse-vw-dp-card_sharedStyles_vseWidgetLbVideoBlock__3HLSk{min-height:800px;position:relative}}._vse-vw-dp-card_sharedStyles_vseWidgetLbSpinner__3DoDT{-webkit-box-pack:center;-ms-flex-pack:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;justify-content:center}._vse-vw-dp-card_sharedStyles_vseWidgetLbAbsolute__2p7Y5,._vse-vw-dp-card_sharedStyles_vseWidgetLbSpinner__3DoDT{border:0;left:0;position:absolute;right:0;top:0} ._vse-vw-dp-card_style_thumbnailUpdates__3sx2a ._vse-vw-dp-card_style_vseVideoImageWrapper__3Sk54{z-index:1}._vse-vw-dp-card_style_thumbnailUpdates__3sx2a ._vse-vw-dp-card_style_vseVideoImageWrapper__3Sk54:before{background-image:url(https://m.media-amazon.com/images/G/01/vse/Discovery/elements-play-button2x.png)}._vse-vw-dp-card_style_thumbnailUpdates__3sx2a ._vse-vw-dp-card_style_vseVideoImageWrapper__3Sk54:after{background-image:-webkit-linear-gradient(top,transparent,rgba(0,0,0,.9));background-image:linear-gradient(180deg,transparent,rgba(0,0,0,.9));bottom:0;content:"";display:inline-block;height:48px;left:0;position:absolute;right:0;top:auto;width:100%}._vse-vw-dp-card_style_thumbnailUpdates__3sx2a ._vse-vw-dp-card_style_vseCarouselItem__3IvFU._vse-vw-dp-card_style_vseCarouselItemHovering__3nydI:hover ._vse-vw-dp-card_style_vseVideoImageWrapper__3Sk54:before{display:inline-block}._vse-vw-dp-card_style_thumbnailUpdates__3sx2a ._vse-vw-dp-card_style_vseCarouselItem__3IvFU._vse-vw-dp-card_style_vseCarouselItemHovering__3nydI:hover ._vse-vw-dp-card_style_vseHoverSection__1n4YC{display:none}._vse-vw-dp-card_style_thumbnailUpdates__3sx2a ._vse-vw-dp-card_style_vseCarouselItem__3IvFU._vse-vw-dp-card_style_vseCarouselItemHovering__3nydI:hover{box-shadow:none}._vse-vw-dp-card_style_thumbnailUpdates__3sx2a ._vse-vw-dp-card_style_carouselElement__AVBU9,._vse-vw-dp-card_style_vseMobileVideoWidget__17sDD ._vse-vw-dp-card_style_thumbnailUpdates__3sx2a ._vse-vw-dp-card_style_carouselElement__AVBU9{padding:0;width:292px!important}._vse-vw-dp-card_style_thumbnailUpdates__3sx2a._vse-vw-dp-card_style_vseDesktopCarousel__1UwLK ._vse-vw-dp-card_style_carouselElement__AVBU9{margin-left:12px!important}._vse-vw-dp-card_style_thumbnailUpdates__3sx2a ._vse-vw-dp-card_style_vseVideoDuration__vDK4S{background-color:transparent;background-color:initial;z-index:1}._vse-vw-dp-card_style_thumbnailUpdates__3sx2a ._vse-vw-dp-card_style_vseVideoTitle__sPgV5{height:auto;max-height:none}._vse-vw-dp-card_style_thumbnailUpdates__3sx2a ._vse-vw-dp-card_style_vseVideoTitleBlockOverlay__ZyhF4{position:relative}._vse-vw-dp-card_style_thumbnailUpdates__3sx2a ._vse-vw-dp-card_style_vseVideoTitleBlockOverlay__ZyhF4:before{background-color:hsla(0,0%,7%,.5);content:"";height:100%;left:0;position:absolute;top:0;width:100%;z-index:1}._vse-vw-dp-card_style_thumbnailUpdates__3sx2a ._vse-vw-dp-card_style_vseThumbnailSecondaryImg__2eoNE{-webkit-filter:blur(10px);filter:blur(10px);-webkit-transform:scale(1.75);-ms-transform:scale(1.75);transform:scale(1.75)}._vse-vw-dp-card_style_thumbnailUpdates__3sx2a ._vse-vw-dp-card_style_vseVideoTitleBlock__Qp7Od{border:none;bottom:0;height:67px;padding:6px 12px 10px;position:absolute;right:0;text-align:left;width:100%;z-index:1}._vse-vw-dp-card_style_thumbnailUpdates__3sx2a ._vse-vw-dp-card_style_vseVideoTitleText__1lJWI{-webkit-box-orient:vertical;-webkit-line-clamp:2;color:#fff;display:-webkit-box;font-size:13px;font-weight:700;height:auto;line-height:1.31em;max-height:35px;overflow:hidden;padding-bottom:0}._vse-vw-dp-card_style_thumbnailUpdates__3sx2a ._vse-vw-dp-card_style_vseVideoTitleWithCreator__1Meqf{display:inline-block;width:100%}._vse-vw-dp-card_style_thumbnailUpdates__3sx2a ._vse-vw-dp-card_style_vseHasProfile__28XGY ._vse-vw-dp-card_style_vseVideoTitleWithCreator__1Meqf{width:77%}._vse-vw-dp-card_style_thumbnailUpdates__3sx2a ._vse-vw-dp-card_style_vseVideoCreatorName__3M1B_{color:#fff;font-size:12px;overflow:hidden;padding-top:2px;text-overflow:ellipsis;white-space:nowrap}._vse-vw-dp-card_style_thumbnailUpdates__3sx2a ._vse-vw-dp-card_style_vseProfilePlaceholder__34FkJ{display:inline}._vse-vw-dp-card_style_thumbnailUpdates__3sx2a ._vse-vw-dp-card_style_vseVideoThumbnailProfile__1TFKR{display:inline-block;vertical-align:top}._vse-vw-dp-card_style_vseMobileVideoWidget__17sDD ._vse-vw-dp-card_style_carouselElement__AVBU9{padding:0;width:240px!important}._vse-vw-dp-card_style_carouselElement__AVBU9{border:0;padding:5px;width:250px!important}._vse-vw-dp-card_style_vseLazyLoadSpinner__2XtFC{-webkit-box-pack:center;-ms-flex-pack:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:#fff;border:0;display:-webkit-box;display:-ms-flexbox;display:flex;justify-content:center;left:0;opacity:.5;position:absolute;right:0;top:0}._vse-vw-dp-card_style_vseVideoDuration__vDK4S{background-color:rgba(0,0,0,.75);border-radius:4px 0 0 0;bottom:0;color:#fff;filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr="#c0000000",endColorstr="#c0000000");font-size:14px;padding:4px 6px 3px;position:absolute;right:0}._vse-vw-dp-card_style_vseVideoTitleBlock__Qp7Od{border:1px solid #ddd;border-radius:0 0 10px 10px;border-top:0;display:inline-block;padding:4px 7px 10px;width:100%}._vse-vw-dp-card_style_vseVideoTitle__sPgV5{-webkit-box-orient:vertical;-webkit-line-clamp:2;color:#111;display:-webkit-box;height:3em;max-height:3em;overflow:hidden;position:relative;text-overflow:-o-ellipsis-lastline}._vse-vw-dp-card_style_vseVideoTitleText__1lJWI{display:inline;font-size:14px;font-weight:400;line-height:1.21em;text-decoration:inherit}._vse-vw-dp-card_style_vseVideoCreatorName__3M1B_{color:#555;display:inline-block;float:left;font-size:13px;line-height:1.46em;overflow:hidden;padding-top:10px;text-overflow:ellipsis;white-space:nowrap;width:100%}._vse-vw-dp-card_style_vseMobileVideoWidget__17sDD ._vse-vw-dp-ca







