.wpfs-item{position:fixed; z-index:9999; background:transparent; padding:6px; max-width:260px; box-sizing:border-box;}
.wpfs-left{ left:6px; }
.wpfs-right{ right:6px; }
.wpfs-close{ position:absolute; top:6px; right:6px; background:transparent; border:none; font-size:20px; color:#000; cursor:pointer; }
.wpfs-close:hover{ transform:scale(1.15); }
.wpfs-drag{ text-align:center; cursor:move; color:#000; font-weight:bold; user-select:none; }
.wpfs-drag-top{ position: absolute; top:0; left:0; right:0; height:22px; }
.wpfs-drag-bottom{ position: absolute; bottom:0; left:0; right:0; height:22px; }
.wpfs-content img{ display:block; max-width:100%; height:auto; }

/* Animasi keluar */
.wpfs-animate-out-fade{ animation: wpfsFadeOut 0.5s forwards; }
.wpfs-animate-out-slide-left{ animation: wpfsSlideOutLeft 0.5s forwards; }
.wpfs-animate-out-slide-right{ animation: wpfsSlideOutRight 0.5s forwards; }

@keyframes wpfsFadeOut { from{ opacity:1; } to{ opacity:0; } }
@keyframes wpfsSlideOutLeft { from{ transform: translateX(0); } to{ transform: translateX(-120%); opacity:0; } }
@keyframes wpfsSlideOutRight { from{ transform: translateX(0); } to{ transform: translateX(120%); opacity:0; } }
