  #popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            z-index: 98;
            display: none
        }
 
        #popup-overlay.open {
            display: flex;
            justify-content: center;
            align-items: center;
        }
 
        .pop-cont {
            width: max-content;
            height: max-content;
            padding: 30px;
            background: #000;
        }
 
        .popexit {
            position: absolute;
            top: 0;
            right: 0;
        }