Thinktank Waterless Toilet
Thinktank Waterless Toilet ™ - USA /* CSS Imports */ @import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap'); /* Main Container Layout */ .cd-product -description { font-family: 'Lato', sans-serif; color: #333333; line-height: 1.5; width: 100%; box-sizing: border-box; max-width: 1100px; margin: 0 auto; padding: 20px; } /* Typography & Headings (Using explicit pixels to prevent theme interference) */ .cd-product-description h1 { text-align: center; color: #2c3e50; margin: 20px 0 8px; font-size: 38px; font-weight: 700; letter-spacing: -0.02em; } .cd-tagline { text-align: center; font-weight: 700; color: #2E86C1; margin-bottom: 35px; font-size: 16px; text-transform: uppercase; letter-spacing: 2px; } /* Premium Image Gallery Grid */ .cd-main-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 40px; } .cd-gallery-item { position: relative; overflow: hidden; border-radius: 12px; border: 1px solid #e1e8ed; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03); transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); cursor: default; } .cd-gallery-item img { width: 100%; display: block; transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1); } /* Gallery Cropping & Aspect Ratios */ .cd-gallery-item.cd-hero { grid-column: span 2; } .cd-gallery-item.cd-hero img { height: 550px; object-fit: cover; object-position: center 70%; } .cd-gallery-item.cd-angle img { height: 550px; object-fit: cover; object-position: center 70%; } .cd-gallery-item.cd-detail-3 img { height: 350px; object-fit: cover; object-position: center 75%; } .cd-gallery-item.cd-detail-4 img { height: 350px; object-fit: cover; object-position: center 80%; } .cd-gallery-item.cd-detail-5 img { height: 350px; object-fit: cover; object-position: center bottom; } /* Hover Transitions */ .cd-gallery-item:hover { transform: translateY(-8px); box-shadow: 0 16px 32px rgba(46, 134, 193, 0.12); border-color: #2E86C1; z-index: 10; } .cd-gallery-item:hover img { transform: scale(1.05); } /* Product Sales Pitch Cards Grid */ .cd-value-section { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-bottom: 15px; } .cd-value-card { border: 1px solid #e1e8ed; border-top: 5px solid #2E86C1; padding: 24px; border-radius: 8px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.02); transition: transform 0.3s ease; } .cd-value-card:hover { transform: translateY(-2px); } .cd-value-card h3 { margin: 0 0 12px 0; color: #2E86C1; font-size: 19px; font-weight: 700; } .cd-value-card p { margin: 0; font-size: 15px; color: #444444; line-height: 1.6; } /* Technical Specifications Container Layout */ .cd-specs-row { display: flex; flex-direction: row; flex-wrap: nowrap; /* Forces layout to remain horizontal at all times */ gap: 30px; align-items: center; padding: 30px 0; border-top: 1px solid #e1e8ed; border-bottom: 1px solid #e1e8ed; margin: 40px 0; width: 100%; } .cd-logo-side { flex: 0 0 35%; max-width: 280px; min-width: 120px; text-align: center; } .cd-logo-side img { width: 100%; max-width: 280px; height: auto; } .cd-table-side { flex: 1; min-width: 0; /* Prevents text overflow breaks inside flex items */ } .cd-product-description table { width: 100%; border-collapse: collapse; font-size: 14px; border-radius: 8px; overflow: hidden; } .cd-product-description th { color: #2E86C1; padding: 14px 0; text-align: left; font-weight: 700; font-size: 18px; border-bottom: 2px solid #2E86C1; } .cd-product-description td { padding: 12px 14px; border-bottom: 1px solid #f0f0f0; } .cd-product-description td:first-child { padding-left: 0; } /* Video & Resource Showcase Layout */ .cd-resources { padding: 10px 0 40px 0; border-bottom: 1px solid #e1e8ed; margin: 0 0 35px 0; text-align: center; } /* Premium Brand-Colored Outline Buttons */ .cd-manual-btn { display: inline-block; background: transparent; border: 2px solid #d35400; color: #d35400 !important; padding: 14px 28px; text-decoration: none; font-weight: bold; border-radius: 6px; margin-bottom: 30px; transition: all 0.3s ease; } .cd-manual-btn:hover { background: #d35400; color: #ffffff !important; } .cd-video-wrapper { width: 100%; max-width: 750px; margin: 0 auto; } .cd-main-video { width: 100%; height: auto; aspect-ratio: 16 / 9; border-radius: 8px; box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15); background: transparent; object-fit: contain; } /* Center-aligned Flexbox Video Grid */ .cd-video-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 24px; } .cd-video-link { display: block; background: transparent; border: 2px solid #2E86C1; color: #2E86C1 !important; text-align: center; padding: 12px; text-decoration: none; border-radius: 6px; font-size: 13px; font-weight: bold; transition: all 0.3s ease; flex: 1 1 200px; max-width: 300px; box-sizing: border-box; } .cd-video-link:hover { background: #2E86C1; color: #ffffff !important; } /* Tablet Responsive Layout */ @media (max-width: 768px) { .cd-main-gallery { grid-template-columns: 1fr; } .cd-gallery-item.cd-hero, .cd-gallery-item.cd-angle, [class*="cd-detail"] { grid-column: span 1; } .cd-gallery-item img { height: 380px !important; } } /* Mobile Responsive Layout and Spacing */ @media screen and (max-width: 600px) { .cd-product-description { padding: 10px; } .cd-product-description h1 { font-size: 28px; margin: 10px 0 4px; } .cd-tagline { margin-bottom: 20px; font-size: 13px; } .cd-main-gallery { gap: 10px; margin-bottom: 20px; } .cd-gallery-item img { height: 280px !important; } /* Value Cards Grid Mobile View */ .cd-value-section { grid-template-columns: 1fr; gap: 10px; margin-bottom: 10px; } .cd-value-card { padding: 16px; border-top-width: 4px; } .cd-value-card h3 { font-size: 17px; margin-bottom: 6px; } .cd-value-card p { font-size: 14px; line-height: 1.4; } /* Mobile Horizontal Specs Layout (No Stacking) */ .cd-specs-row { flex-direction: row; flex-wrap: nowrap; padding: 20px 0; margin: 25px 0; gap: 12px; } .cd-logo-side { flex: 0 0 30%; min-width: 80px; } .cd-resources { padding: 0 0 25px 0; margin: 0 0 25px 0; } .cd-manual-btn { margin-bottom: 20px; padding: 12px 24px; } /* Centered and Stacked Video Button Layout on Mobile */ .cd-video-grid { gap: 10px; margin-top: 16px; } .cd-video-link { flex: 1 1 100%; max-width: 100%; } /* Mobile-optimized side-by-side specs table values */ .cd-product-description table { display: table; width: 100%; font-size: 12px; } .cd-product-description thead { display: table-header-group; } .cd-product-description tbody { display: table-row-group; } .cd-product-description tr { display: table-row; border: none; } .cd-product-description td { display: table-cell; border: none; border-bottom: 1px solid #f0f0f0; position: static; padding: 8px 4px; text-align: left; } .cd-product-description td:first-child { font-weight: bold; color: #2E86C1; width: 35%; padding-left: 0; } .cd-product-description td:last-child { text-align: right; width: 65%; } } /* Footer */ .cd-footer { text-align: center; margin-top: 40px; padding-top: 20px; border-top: 1px solid #e1e8ed; color: #888888; font-style: italic; font-size: 15px; line-height: 1.6; } Thinktank Waterless Toilet ™ Airtight • Urine Diverting • 6-Year Warranty • Made in Canada Designed for Everyone Women: Thoughtfully engineered collection areas mean no special "aiming" is required.Men: The only diverting toilet on the market where men can stand while using. Massive Airflow = Zero Odor 100% airtight design. When in use, the open hatch acts as a giant air intake—sucking air into the toilet rather than allowing it to escape into your home. Maximum Energy Efficiency Thinktank draws outside air and exhausts it back outside. This prevents your expensively heated or cooled indoor air from being wasted. Cleanest Disposal System Not "gross" to empty. Vertical chute walls minimize contact, and a patented rotation mechanism advances the container slightly each use for perfectly even distribution. Best Warranty in the Industry 6 Years on the toilet body. 3 Years on high-performance fans. Built from rotomolded plastic (like a whitewater kayak) to be virtually indestructible. DOWNLOAD USA OFFICIAL MANUAL (V4.0) Watch: Official USA Unboxing & Setup Guide Why Thinktank? (Overview) Installation Demo Capacity Showcase Technical Specifications Footprint 23.23" D × 18" W × 20.67" H Weight 27 lbs (Ships in 1 Box) Power 1 Watt (12V DC / 110V AC) Capacity 40-60 Solids Uses per bag "It's where I get my best thinking done." Proudly Made in Canada
More you might like
Related
Thinktank Waterless Toilet
Related
Thinktank Waterless Composting Toilet
Related
Thinktank Waterless Toilet White
Related