body{margin:0;overflow-x:hidden}.popup-wrapper{position:fixed;bottom:0;right:0;width:auto;height:auto;background:#0000;z-index:9999;display:none;flex-direction:column;align-items:center;justify-content:center;transition:opacity 0.5s ease-in-out,transform 0.5s ease-in-out}.popup-is-visible{display:flex;animation:slide-in-right 1.5s linear forwards}@keyframes slide-in-right{from{transform:translateX(100%);opacity:0}to{transform:translateX(0);opacity:1}}.popup-is-hidden{animation:slide-out-right 1.5s linear forwards}@keyframes slide-out-right{from{transform:translateX(0);opacity:1}to{transform:translateX(100%);opacity:0}}.popup-close{position:absolute;top:10px;right:10px;font-size:20px;color:#6B7280;cursor:pointer}.popup-close:hover{color:#000}