Your shopping cart is empty.

ban.do

6 Products
Special Collection
We exist to help you be your best and we encourage joy. We put you first—and, more importantly, we believe you should put yourself first. Since 2008 we’ve been curating and creating clothes, accessories, planners, and more to make life a little bit brighter and a lot more fun. Over a decade later, this remains our mission, as does drawing awareness to mental health issues and creating products dedicated to you and your well-being.
Puffy Sticker Pack
$11.00
The possibilities are endless when it comes to stickers. Put them all over new planners, empty notebooks, lonely laptops, craft projects, etc. This pack includes assorted shapes and designs in a fun puffy 3D format. 20.32 cm. x 15.24 cm. Set of 5 sticker sheets
De-Stress Ball
$9.00
Let it all out with this de-stress ball. It’s made of slow rising polyurethane foam, which basically just means that no matter how tight you squeeze it, it’ll always go back to its original shape. So squeeze all your troubles away, this croissant isn’t going anywhere Slow rising polyurethane foam ...
Sticker Book - Issue 7
$13.00
This book has 35 pages with over 700 stickers—featuring everything from important reminders to cute dogs to words of encouragement. 3.75 in. x 6.5 in. Paper stickers
Tutti Frutti Picnic Cooler Bag
$35.00
This cooler bag has an extra big zipper opening for super easy access to its contents, an interior mesh pocket to hold accessories, and it’s even sized to perfectly fit your favorite tumbler cup.  15 in. x 15 in. x 5 in. Nylon body and handle Microfiber EVA lining Interior...
Berry Butterfly To Do Planner
$25.00
Prefer a daily planner? Want a more in-depth companion to our classic planners? Look no further. This planner is undated and each day has sections for your schedule, priorities, to-do list, and shopping list. Plus, each page is perforated so you can easily rip the old pages out as you...
Floral Playing Cards Set
$20.00
You’ll be ahead of the game when you play with these cards. This set includes two decks covered in bright, colorful designs. 3.5 in. x 2.5 in. Matte laminated cards with spot gloss Set of 2 decks
is added to your shopping cart.
Go to Cart
is added to your wishlist.
Go to Wishlist
document.addEventListener('DOMContentLoaded', function() { const productJson = document.querySelectorAll('[id`^`=ProductJson-'); if (productJson.length > 0) { for (let i = 0; i < productJson.length; i++) { const current = productJson[i]; const sectionId = current.id.replace('ProductJson-', ''); const section = document.querySelector('[data-section-id="' + sectionId + '"]'); const product = JSON.parse(current.text); if (product.options.length === 1) { const unavailableVariants = []; for (let j = 0; j < product.variants.length; j++) { const variant = product.variants[j]; if (!variant.available) { unavailableVariants.push(variant); } } if (unavailableVariants.length > 0) { const mutationCallback = function() { const variantOptions = section.querySelectorAll('.single-option-selector option'); if (variantOptions.length > 0) { for (let k = 0; k < unavailableVariants.length; k++) { const unavailableVariant = unavailableVariants[k]; for (let l = 0; l < variantOptions.length; l++) { const option = variantOptions[l]; if (unavailableVariant.title === option.value) { option.remove(); } } } if (typeof observer === 'object' && typeof observer.disconnect === 'function') { observer.disconnect(); } } } const observer = new MutationObserver(mutationCallback); const addToCartForm = document.querySelector('form[action*="/cart/add"]'); mutationCallback(); if (window.MutationObserver && addToCartForm.length) { const config = { childList: true, subtree: true }; if (typeof observer === 'object' && typeof observer.disconnect === 'function') { observer.disconnect(); } observer.observe(addToCartForm, config); } } } } } });