OLIPOP Spongebob Sweepstakes: Win a Six-Month Supply of OLIPOP + SpongeBob Prizes
#olipop-box1 .wrap{
background:#fffef9;
color:#1b2a3b;
border-radius:22px;
padding:20px 20px 14px;
box-shadow:0 12px 28px rgba(0,0,0,.12);
border:1px solid rgba(27,42,59,.12);
position:relative;
overflow:hidden;
}
#olipop-box1 .brandbar{
height:6px;
border-radius:6px;
background:linear-gradient(90deg,#ffd400 0%,#00a6a6 33%,#ff7b6e 66%,#7b61ff 100%);
margin-bottom:14px;
}
#olipop-box1 h3{
margin:2px 0 10px;
font-size:21px;
line-height:1.25;
font-weight:900;
text-transform:uppercase;
color:#00a6a6;
letter-spacing:.4px;
}
#olipop-box1 .meta{
font-size:14px;
opacity:.9;
margin-bottom:14px;
}
#olipop-box1 .timer{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:12px;
margin:10px 0 8px;
}
#olipop-box1 .cell{
background:#fff9e1;
border:1px solid rgba(27,42,59,.12);
border-radius:14px;
padding:12px 8px;
text-align:center;
box-shadow:0 4px 10px rgba(27,42,59,.06);
}
#olipop-box1 .num{
font-size:30px;
font-weight:900;
letter-spacing:.5px;
color:#1b2a3b;
}
#olipop-box1 .lbl{
font-size:12px;
opacity:.85;
text-transform:uppercase;
letter-spacing:.6px;
margin-top:2px;
}
#olipop-box1 .note{
font-size:12px;
color:#42546b;
margin-top:12px;
}
OLIPOP Spongebob Sweepstakes — Time Left to Enter
(function(){
// Ends: Dec 15, 2025 11:59:59 PM PST = Dec 16, 2025 07:59:59 UTC
var end = new Date(“2025-12-16T07:59:59Z”).getTime();
var ids = {d:”olipop-d”,h:”olipop-h”,m:”olipop-m”,s:”olipop-s”};
function pad(n){ return n<10?"0"+n:n; }
function tick(){
var now=Date.now(), t=end-now;
if(t<0){t=0;}
var sec=Math.floor(t/1000);
var d=Math.floor(sec/86400); sec-=d*86400;
var h=Math.floor(sec/3600); sec-=h*3600;
var m=Math.floor(sec/60); sec-=m*60;
var s=sec;
document.getElementById(ids.d).textContent=pad(d);
document.getElementById(ids.h).textContent=pad(h);
document.getElementById(ids.m).textContent=pad(m);
document.getElementById(ids.s).textContent=pad(s);
}
tick(); setInterval(tick,1000);
})();
#olipop-box2 .card{
position:relative;
background:#ffffff;
border:2px solid #00a6a6;
border-radius:22px;
padding:22px;
box-shadow:0 12px 28px rgba(0,0,0,.12);
overflow:hidden;
text-align:center;
}
#olipop-box2 .ribbon{
position:absolute;
inset:auto -40px 14px auto;
transform:rotate(-8deg);
background:#ffd400;
color:#1b2a3b;
font-weight:900;
padding:6px 46px;
border-radius:10px;
box-shadow:0 6px 14px rgba(0,0,0,.25);
font-size:15px;
letter-spacing:.6px;
text-transform:uppercase;
}
#olipop-box2 h3{
margin:6px 0 12px;
font-size:22px;
line-height:1.25;
color:#00a6a6;
font-weight:900;
text-transform:uppercase;
}
#olipop-box2 .sub{
font-size:15px;
margin-bottom:12px;
color:#1b2a3b;
opacity:.9;
}
#olipop-box2 .cta{
display:inline-block;
margin-top:12px;
text-align:center;
background:linear-gradient(90deg,#00a6a6,#7b61ff);
color:#fff;
text-decoration:none;
border-radius:16px;
padding:16px 36px;
font-weight:800;
font-size:18px;
border:none;
cursor:pointer;
box-shadow:0 8px 24px rgba(0,166,166,.35);
transition:transform .25s ease;
text-transform:uppercase;
letter-spacing:.6px;
}
#olipop-box2 .cta:hover{ transform:scale(1.04); }
/* Toast / popup */
#olipop-popup{
display:none;
position:fixed;
top:50%;left:50%;
transform:translate(-50%,-50%);
background:#ffffff;
padding:24px 28px;
border-radius:18px;
box-shadow:0 0 32px rgba(0,0,0,.25);
z-index:9999;
font-size:18px;
font-weight:800;
color:#1b2a3b;
max-width:520px;
width:88%;
text-align:center;
}
/* Side-shooting confetti */
#olipop-confetti{
pointer-events:none;
position:fixed;
inset:0;
overflow:hidden;
z-index:9998;
display:none;
}
.olipop-piece{
position:absolute;
width:10px; height:14px;
opacity:.95;
will-change: transform, opacity;
}
@keyframes shootRight { /* from left to right */
0% { transform: translateX(-20px) translateY(var(–y,0)) rotate(0deg); opacity:1; }
100% { transform: translateX(110vw) translateY(calc(var(–y,0) + 40vh)) rotate(540deg); opacity:.98; }
}
@keyframes shootLeft { /* from right to left */
0% { transform: translateX(100vw) translateY(var(–y,0)) rotate(0deg); opacity:1; }
100% { transform: translateX(-10vw) translateY(calc(var(–y,0) + 40vh)) rotate(-540deg); opacity:.98; }
}
Ready to Enter the OLIPOP Spongebob Sweepstakes?
// Safe, rule-accurate fact toasts
const olipopFacts = [
“Ten winners total — each prize package ARV: $473.03.”,
“Ends December 15, 2025 at 11:59 PM PST.”,
“Eligibility: 50 U.S. & D.C., 18+ only.”,
“No purchase necessary. One prize package per person.”
];
function olipopShowPopup(msg){
const el=document.getElementById(“olipop-popup”);
if(!el) return;
el.textContent = msg;
el.style.display=”block”;
clearTimeout(olipopShowPopup._t);
olipopShowPopup._t=setTimeout(()=>{ el.style.display=”none”; }, 3600);
}
function olipopFireConfettiSides(){
const conf=document.getElementById(“olipop-confetti”);
conf.style.display=’block’;
const colors=[‘#ffd400′,’#00a6a6′,’#ff7b6e’,’#7b61ff’,’#ffffff’,’#1b2a3b’];
const pieces=160;
const h=window.innerHeight;
for(let i=0;is.remove(),3000);
}
setTimeout(()=>{ conf.style.display=’none’; }, 1800);
}
// Smooth scroll (~10s) with timed popups and confetti bursts
function olipopStartScroll(){
const box3=document.getElementById(“olipop-entryBox”);
if(!box3){ console.error(“Box 3 (#olipop-entryBox) not found.”); return; }
// Start-side confetti
olipopFireConfettiSides();
const startY=window.scrollY;
const targetY=box3.getBoundingClientRect().top+window.scrollY-8;
const duration=10000; // ~10 seconds
let startT=null;
[800, 3800, 7000].forEach((ms,i)=>{
setTimeout(()=>{ olipopShowPopup(olipopFacts[i]); }, ms);
});
setTimeout(()=>{
olipopShowPopup(olipopFacts[3]);
olipopFireConfettiSides();
}, duration-500);
function step(ts){
if(!startT) startT=ts;
const prog=ts-startT;
const pct=Math.min(prog/duration,1);
window.scrollTo(0,startY+(targetY-startY)*pct);
if(prog<duration) requestAnimationFrame(step);
}
requestAnimationFrame(step);
}
What if your favorite nostalgic cartoon character teamed up with your favorite sparkling soda? That’s exactly what’s happening with the OLIPOP Spongebob Sweepstakes—a quirky, limited-time giveaway that brings together bubbly prebiotic soda and Bikini Bottom vibes. Ten lucky winners will each snag a six-month supply of OLIPOP, plus SpongeBob-themed prizes like a mini fridge and a blanket. Altogether, each prize package is valued at $473.03, and with ten packages up for grabs, the total sweepstakes value hits $4,730.30.
This isn’t some sketchy internet contest. OLIPOP, the cult-favorite soda brand out of Oakland, California, is the sponsor, and the sweepstakes runs officially from August 1, 2025, to December 15, 2025. If you’re already imagining a mini fridge in your bedroom fully stocked with bubbly cans of OLIPOP (flavor of your choice), here’s everything you need to know.
Prize Breakdown
Each of the ten winners will walk away with a prize package that feels both fun and practical:
- Six-month supply of OLIPOP — Two cases of OLIPOP every month for six months, totaling twelve cases. That’s 144 cans of soda (flavor chosen by you). With each case retailing at $34.99, this portion alone carries major value.
- SpongeBob Mini Fridge — Retailing at $35.29, this is the perfect retro-style mini appliance to store your drinks. It’s compact, playful, and straight out of SpongeBob’s pineapple under the sea.
- SpongeBob Blanket — Valued at $17.86, this cozy blanket pairs perfectly with a cold soda and a cartoon binge.
Total value of each package: $473.03. With ten winners, the grand prize pool is worth $4,730.30.
What You Can Do with the Prize if You Win
The six-month OLIPOP supply is the clear standout here. Imagine the fridge in your dorm room, office, or even by the couch—stocked with 144 cans of soda. This isn’t just free soda; it’s the chance to try every flavor OLIPOP has while never running out during movie nights or study sessions.
The SpongeBob mini fridge is Instagram-worthy. It’s compact enough to fit in your bedroom, game room, or even on a desk, making it the ultimate conversation starter. It’s also practical—perfect for chilling a few sodas, keeping snacks cool, or storing skincare products.
The SpongeBob blanket adds a playful touch to your space. Picture yourself wrapped in it while streaming SpongeBob SquarePants reruns or scrolling TikTok with a cold can of OLIPOP at arm’s length. Together, these prizes create a quirky, ready-made setup for anyone who loves soda and SpongeBob nostalgia.
This package works for college students, parents who want to delight their kids, or anyone who appreciates a good themed fridge. And let’s be honest—free soda for half a year is a dream scenario in this economy.
Q&A
Is this legitimate?
Yes. The OLIPOP Spongebob Sweepstakes is 100% legitimate and sponsored directly by Olipop, Inc., based in Oakland, California. The sweepstakes is subject to federal, state, and local laws, and the official rules clearly outline eligibility and prize details.
How many entries are allowed?
This is a one-time entry sweepstakes. Each person may only submit one entry during the entire sweepstakes period.
Are there bonus entries?
No. There are no bonus entries offered. Each entrant gets one shot at the prize pool.
How many prizes can you win?
Only one prize package per person. Even if you somehow entered multiple times, you can’t win more than once.
#olipop-entryBox .shell{
background:#f7fbff;
border:2px solid #00a6a6;
border-radius:22px;
padding:20px;
box-shadow:0 10px 28px rgba(0,0,0,.08);
}
#olipop-entryBox h3{
margin:6px 0 14px;
font-size:21px;
line-height:1.25;
color:#1b2a3b;
font-weight:900;
text-transform:none;
}
#olipop-entryBox .cta{
display:block;
text-align:center;
background:#00a6a6;
color:#fff;
text-decoration:none;
border-radius:14px;
padding:14px 18px;
font-weight:900;
border:2px solid #1b2a3b;
margin:16px auto;
max-width:360px;
}
#olipop-entryBox .cta:hover{ filter:brightness(1.05); }
#olipop-entryBox .grid{display:grid;grid-template-columns:1fr;gap:16px}
#olipop-entryBox .card{
background:#ffffff;
border:1px solid #e2e8f8;
border-radius:14px;
padding:14px;
}
#olipop-entryBox .prizes ul{ margin:0 0 0 18px; }
#olipop-entryBox .recap dl{
display:grid;
grid-template-columns:minmax(150px,210px) 1fr;
gap:8px 14px;
margin:6px 0;
}
#olipop-entryBox .recap dt{font-weight:800;color:#00a6a6}
#olipop-entryBox .recap dd{margin:0}
#olipop-entryBox .adslot{
margin:16px 0;
border-radius:12px;
min-height:120px;
}
@media (min-width:860px){
#olipop-entryBox .grid{grid-template-columns:1fr 1fr;}
}
OLIPOP Spongebob Sweepstakes — Official Entry
Click Here to Enter
Prize Breakdown
- Six-month supply of OLIPOP — Two (2) cases per month for six months (twelve 12-oz cans per case; flavor chosen by the winner). ARV $34.99 per case (12 cases total).
- Spongebob Mini Fridge — ARV $35.29.
- Spongebob Blanket — ARV $17.86.
Ten (10) winners total. Approximate Retail Value per prize package: $473.03. Total Sweepstakes ARV: $4,730.30.
Giveaway Recap
- Sponsor
- Olipop, Inc., 360 Grand Ave #259, Oakland, CA 94610
- Eligibility
- 50 U.S. & D.C., 18+
- Entry Type
- One-time entry via form submission (first name, last name, email)
- Promotion Period
- Aug 1, 2025 (≈12:00 PM PST) – Dec 15, 2025 (11:59 PM PST)
- Winner Selection
- On or about Dec 17, 2025; notified by email on or about Dec 19, 2025
- Limit
- One prize package per person
- Odds
- Depend on number of eligible entries received
- Entry Link
- Enter at OLIPOP
Fast Q&A
- Is this legitimate? Yes—sponsored by Olipop, Inc. Sweepstakes follows applicable U.S. laws. Review the official rules on the entry page for full details.
- How many entries are allowed? One-time entry per person during the sweepstakes period.
- Are there bonus entries? None listed—standard single entry via form.
- How many prizes can you win? One prize package per person.
Helpful Freebie Mom Guides
Keep going