.custom-popup{display:none;position:fixed;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,.5);z-index:9999;animation:zoomIn .5s both}@keyframes zoomIn{0%{opacity:0;transform:scale(.5)}to{opacity:1;transform:scale(1)}}.custom-popup.hidden{animation:zoomOut .5s both}@keyframes zoomOut{0%{opacity:1;transform:scale(1)}to{opacity:0;transform:scale(.5)}}.custom-popup-content{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:80%;background:#fff;padding:20px;border-radius:5px;box-shadow:0 0 10px rgba(0,0,0,.5)}.custom-popup-close{position:absolute;top:10px;right:10px;cursor:pointer;font-size:20px;color:#666}