.accordion { background-color: #ffffff; color: #444; cursor: pointer; padding: 10px 0 0 10px; width: 100%; border: none; text-align: left; outline: none; font-size: 16px; transition: transform 0.3s ease; margin: 0; } .rte h5:first-child { margin-top: 5px; } .rte h5 { margin-bottom: 15px; } .active, .accordion:hover { background-color: #ffffff; } .accordion:after { content: "\002B"; color: #777; font-weight: bold; float: right; margin-left: 5px; margin-top: -32px; } .active:after { content: "\2212"; } .panel { padding: 0 0 2px 10px; background-color: white; max-height: 0; overflow: hidden; transition: max-height 0.2s ease-out; border-bottom: 1px solid #e1e1e1; position: relative; } The perfect everyday tote. Designed with a spacious inside pocket to keep your essentials easily accessible and a magnetic clasp closure to close up shop effortlessly. Dimensions Tote Size: H 13 in. × W 22 in. × D 5.5 in. Inside Pocket: H 7.5 in. × W 7 in. Care Hand wash with mild soap or detergent. Machine wash cold on delicate cycle. Lay flat to dry. We do not recommend putting the canvas tote in the dryer. Shipping & Returns This item qualifies for Free Shipping (USPS 5 to 8 business days). Please email customer service for returns. For complete details, read our Shipping and Return policies. var acc = document.getElementsByClassName("accordion"); var i; for (i = 0; i < acc.length; i++) { acc[i].addEventListener("click", function() { this.classList.toggle("active"); var panel = this.nextElementSibling; if (panel.style.maxHeight) { panel.style.maxHeight = null; } else { panel.style.maxHeight = panel.scrollHeight + "px"; } }); }