layout builder admin override popover styles from other sources

add_action( 'admin_head', function() {
    ?>
    <style>
        .facetwp-content .popover {
        position: absolute;
        width: 220px;
        top: 20px;
        left: 20px;
        background-color: #fff;
        outline: 1px solid #69747E;
        z-index: 10;
    </style>
    <?php
});