		.popups-list-info {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%,-50%);
            width: 100%;
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 0;
        }
        
        .open-popup.there-are-popups {
            display: block!important;
        }
        
        .there-are-popups {
            position: fixed;
            z-index: 9999;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgb(255 255 255 / 80%);
        }
        
        .popups-list {
            text-align: center;
            margin-left: auto;
            margin-right: auto;
            position: relative;
        }
        
        .close-popups {
            cursor: pointer;
            background: black;
            line-height: 2;
            position: absolute;
            padding: 5px 10px 0px;
            right: 0;
            top: -37px;
        }
        .open-popup.there-are-popups.readit {
                display: none !important;
            }
        .popups-list p:empty {
            display: none;
        }
        
        
        .single-popup-content, .single-popup-content  * {
            max-height: 90vh;
        }
        
        @media screen and (max-width:640px) {
            .popups-list {
                max-width:90%!important;
            }
        }