.bottle{position:relative;width:80px;height:120px;border:4px solid hsl(var(--primary));border-radius:5px 5px 30px 30px;background-color:transparent;overflow:hidden}.bottle:before{content:"";position:absolute;top:-10px;left:50%;transform:translateX(-50%);width:40px;height:10px;background-color:hsl(var(--primary));border-radius:5px 5px 0 0}.water{bottom:0;height:0;background-color:hsl(var(--primary)/.8);animation:fill 2.5s ease-out infinite}.water,.water:before{position:absolute;left:0;width:100%}.water:before{content:"";top:-5px;height:10px;background-color:hsl(var(--primary));border-radius:50%;animation:wave 1s linear infinite}@keyframes fill{0%{height:0}50%{height:100%}to{height:0}}@keyframes wave{0%{transform:translateX(-20%) scaleX(1.4)}50%{transform:translateX(20%) scaleX(1.4)}to{transform:translateX(-20%) scaleX(1.4)}}