/* Popup */ .a-popup-bg { position: fixed; display: flex; align-items: center; justify-content: center; height: 100vh; width: 100vw; max-width:100%; max-height: 100%; overflow: hidden; background-color: rgba(0, 0, 0, 0.48); opacity: 0; z-index: 30; } .a-wide-popup-inner-width { width: max(300px, 80vw); } .a-popup-inner-width { width: clamp(300px, 50vw, 800px); } .a-popup-inner { width: clamp(300px, 50vw, 800px); min-height: 300px; max-height: 80vh; background-color: white; } .a-popup-close { cursor: pointer; }